From 7bd9e48f153aa2130c091978485ab69825528886 Mon Sep 17 00:00:00 2001 From: Jakub Kubrynski Date: Sat, 16 May 2015 12:44:23 +0200 Subject: [PATCH] Ranging dependencies versions --- build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 57f2a9270a..d44130214f 100644 --- a/build.gradle +++ b/build.gradle @@ -55,7 +55,7 @@ subprojects { dependencies { compile localGroovy() - testCompile('org.spockframework:spock-core:0.7-groovy-2.0') { + testCompile('org.spockframework:spock-core:1.0-groovy-2.3') { exclude(group: 'org.codehaus.groovy') } } @@ -85,9 +85,9 @@ subprojects { project(':accurest-core') { dependencies { compile 'org.slf4j:slf4j-api:[1.6.0,)' - compile 'org.codehaus.plexus:plexus-utils:3.0.21' - compile 'commons-io:commons-io:2.4' - compile 'org.apache.commons:commons-lang3:3.4' + compile 'org.codehaus.plexus:plexus-utils:[3.0.0,)' + compile 'commons-io:commons-io:[2.0,)' + compile 'org.apache.commons:commons-lang3:[3.0,)' testCompile 'cglib:cglib-nodep:2.2' testCompile 'org.objenesis:objenesis:2.1' testCompile 'com.github.tomakehurst:wiremock:1.53' @@ -97,8 +97,8 @@ project(':accurest-core') { project(':accurest-converters') { dependencies { compile project(':accurest-core') - compile 'org.apache.commons:commons-lang3:3.3.2' - compile 'commons-io:commons-io:[2.4,)' + compile 'org.apache.commons:commons-lang3:[3.0,)' + compile 'commons-io:commons-io:[2.0,)' compile 'dk.brics.automaton:automaton:1.11-8' // needed for Xeger testCompile 'com.github.tomakehurst:wiremock:1.53' testCompile 'org.hamcrest:hamcrest-all:1.3' @@ -111,7 +111,7 @@ project(':accurest-gradle-plugin') { compile project(':accurest-converters') compile gradleApi() - testCompile('com.netflix.nebula:nebula-test:2.2.0') { + testCompile('com.netflix.nebula:nebula-test:2.2.1') { exclude(group: 'org.spockframework') } }