Merge pull request #91 from Codearte/tech/minor_improvements

lang3 version fix
This commit is contained in:
Marcin Grzejszczak
2015-06-19 12:56:15 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -17,8 +17,8 @@ class GenerateWiremockClientStubsFromDslTask extends ConventionTask {
@TaskAction
void generate() {
project.logger.info("Accurest Plugin: Invoking GroovyDSL to Wiremock client stubs conversion")
project.logger.debug("From '${getContractsDslDir()}' to '${getStubsOutputDir()}'")
logger.info("Accurest Plugin: Invoking GroovyDSL to Wiremock client stubs conversion")
logger.debug("From '${getContractsDslDir()}' to '${getStubsOutputDir()}'")
RecursiveFilesConverter converter = new RecursiveFilesConverter(new DslToWiremockClientConverter(), getContractsDslDir(),
getStubsOutputDir())

View File

@@ -87,7 +87,7 @@ project(':accurest-core') {
compile 'org.slf4j:slf4j-api:[1.6.0,)'
compile 'org.codehaus.plexus:plexus-utils:[3.0.0,)'
compile 'commons-io:commons-io:[2.0,)'
compile 'org.apache.commons:commons-lang3:[3.0,)'
compile 'org.apache.commons:commons-lang3:[3.3,)'
testCompile 'cglib:cglib-nodep:2.2'
testCompile 'org.objenesis:objenesis:2.1'
testCompile 'com.github.tomakehurst:wiremock:1.53'