Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rule Logger #1040

Merged
merged 32 commits into from
Nov 19, 2019
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ed63237
#113 Create RuleLogger interface and implementations.
ddcruver Nov 5, 2019
b92a9ab
#113 Create RuleLogger implementation for each factory and assign the…
ddcruver Nov 5, 2019
c4ffa94
#113 Move some test dependencies out of the compile scope.
ddcruver Nov 5, 2019
8365804
#113 Fix an issue where script/jar/lib were assumed to be all togethe…
ddcruver Nov 5, 2019
71c4632
#113 Add RuleLogger mocking to some tests.
ddcruver Nov 5, 2019
e8f542c
#113 Add SLF4J binding for gradle plugin tests.
ddcruver Nov 5, 2019
82c04fd
#1040 Remove explicit scope in test dependencies that are already set…
ddcruver Nov 6, 2019
fc3e4da
#1040 Use slf4j instead of gradle logger
ddcruver Nov 6, 2019
ab83f5c
#1040 Use slf4j instead of gradle logger - fix log statement
ddcruver Nov 6, 2019
1cb089f
#1040 Move simplelogger.properties to classpath.
ddcruver Nov 6, 2019
5867a0e
#1040 Try to get CI Build working.
ddcruver Nov 6, 2019
c272508
#1040 Try to get CI Build working. Upgrade Groovy version.
ddcruver Nov 6, 2019
34a6888
#1040 Remove pushd/popd to not mess with current working directory. …
ddcruver Nov 6, 2019
1772deb
#1040 Try deleting gradle-2.3-bin to fix org.gradle.tooling.GradleCon…
ddcruver Nov 6, 2019
bd6c9a0
#1040 Fix outdated references and spelling errors.
ddcruver Nov 6, 2019
2faea92
#1040 Try to get CI Build working.
ddcruver Nov 6, 2019
f70d0cf
#1040 Try to get CI Build working. Using eclipse plugin.
ddcruver Nov 6, 2019
2ad7943
#1040 Try to get CI Build working. Force it to use https.
ddcruver Nov 6, 2019
268ff15
#1040 Switch back to using Gradle framework logger.
ddcruver Nov 6, 2019
4e8933c
#1040 Try build without to maven builds.
ddcruver Nov 6, 2019
1605a54
#1040 Remove switch in AntRuleLogger to address PR comment.
ddcruver Nov 6, 2019
6328cdb
#1040 Revert changes to jars classpath and scripts to avoid breaking …
ddcruver Nov 6, 2019
eb612ac
#1040 Remove SLFJ from CLI module.
ddcruver Nov 7, 2019
a6174e1
#1040 Add is enable checks to RuleLogger interface to mimic what SLFJ…
ddcruver Nov 7, 2019
154b3db
#1040 Fix some instances of hardcoded "UTF-8"
ddcruver Nov 7, 2019
156f35e
#1040 Cleanup Travis CI integration since we resolve the Gradle downl…
ddcruver Nov 7, 2019
d363ccc
#1040 Convert bat file back to Windows line endings.
ddcruver Nov 7, 2019
a069661
#1040 Add note in description that if print-log-levels option is choo…
ddcruver Nov 7, 2019
63a1a70
#1040 Add Batch files to .gitattributes so it is always treated as CRLF.
ddcruver Nov 7, 2019
44472e8
#1040 Remove simplelogger.properties because we are just going to use…
ddcruver Nov 7, 2019
222d2fb
#1040 Renormalize jsonschema2pojo.bat
ddcruver Nov 7, 2019
646d9f8
#1040 Remove .gitattributes and revert jsonschema2pojo.bat.
ddcruver Nov 15, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#113 Add SLF4J binding for gradle plugin tests.
  • Loading branch information
ddcruver committed Nov 5, 2019
commit e8f542c1efecf7051aa0846fa04130f45a0a094b
5 changes: 5 additions & 0 deletions jsonschema2pojo-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down