Re: Need gradle help

2018-09-18 Thread Kirk Lund
It's working now, thanks! I also added test-sources so it's easier to link the source code for studying their code while working on it: + integrationTestCompile 'org.apache.logging.log4j:log4j-core:' + project.'log4j.version' + ':tests' + integrationTestCompile 'org.apache.logging.log4j:log4j-c

Re: Need gradle help

2018-09-17 Thread Sai Boorlagadda
It looks[1] like it is been renamed as 'tests', so you can try testCompile 'org.apache.logging.log4j:log4j-core:' + project.'log4j.version' + ':tests' [1] https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.11.0/ On Fri, Sep 14, 2018 at 5:17 PM Jacob Barrett wrote: > The

Re: Need gradle help

2018-09-14 Thread Jacob Barrett
The concatenation is missing a : in front of the test-jar. > On Sep 14, 2018, at 4:10 PM, Kirk Lund wrote: > > Log4j2 publishes a test jar for log4j-core. The jar includes useful things > like LoggerContextRule. > > This blog post shows how to add the dependency for testing to maven: > https://