make the version so the generated pom.xml can be used by maven

This commit is contained in:
Christian Meier 2015-08-15 20:23:23 +02:00
parent f1641a3a18
commit cc2ecaf1f3
1 changed files with 4 additions and 4 deletions

View File

@ -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+'