From cc2ecaf1f3bdc025ee9c388119691fd5171e3d9b Mon Sep 17 00:00:00 2001 From: Christian Meier Date: Sat, 15 Aug 2015 20:23:23 +0200 Subject: [PATCH] make the version so the generated pom.xml can be used by maven --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index e0843ad..6516161 100644 --- a/build.gradle +++ b/build.gradle @@ -23,9 +23,9 @@ repositories { } dependencies { - compile 'org.slf4j:slf4j-api:1.7.12+' + compile 'org.slf4j:slf4j-api:1.7.12' /* using the simple logger at runtime, no need for it at compile time though */ - runtime 'org.slf4j:slf4j-simple:1.7.12+' + runtime 'org.slf4j:slf4j-simple:1.7.12' /* Used for processing yaml files inside of gems */ compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.5.4' @@ -33,8 +33,8 @@ dependencies { compile 'com.fasterxml.jackson.core:jackson-databind:2.5.4' /* shrinkwrap is used for digging into archives */ - compile "org.jboss.shrinkwrap:shrinkwrap-bom:1.2.2+" - compile "org.jboss.shrinkwrap:shrinkwrap-depchain:1.2.2+" + compile "org.jboss.shrinkwrap:shrinkwrap-bom:1.2.2" + compile "org.jboss.shrinkwrap:shrinkwrap-depchain:1.2.2" testCompile "org.spockframework:spock-core:1.0-groovy-2.4" testCompile 'org.apache.commons:commons-io:1.3.2+'