Tweak our version ranges to be more clearly defined

This commit is contained in:
R. Tyler Croy 2015-09-02 06:17:59 -07:00
parent 943f4b2e61
commit 9e23d4f9b6
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 5 additions and 5 deletions

View File

@ -41,16 +41,16 @@ dependencies {
/* Needed for discovering brokers and all kinds of other things in
* Zookeeeper
*/
compile 'org.apache.curator:curator-framework:2.7.+'
compile 'org.apache.commons:commons-pool2:2.2+'
compile 'org.apache.curator:curator-framework:[2.7.1,2.8)'
compile 'org.apache.commons:commons-pool2:[2.2,3.0)'
compile 'org.apache.kafka:kafka_2.10:0.8.1.1+'
compile 'org.apache.kafka:kafka_2.11:0.8.2.1'
// Forcing us up to ZK 3.5 to prevent wacky classpath errors when mixing
// and matching dependencies
compile 'org.apache.zookeeper:zookeeper:3.5.+'
compile 'org.apache.zookeeper:zookeeper:3.5.1-alpha'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'cglib:cglib-nodep:2.2.+'
testCompile 'cglib:cglib-nodep:[2.2.2,2.3)'
}
////////////////////////////////////////////////////////////////////////////////