Skip to content

Commit 380572b

Browse files
committed
Merge pull request #62 from aoberoi/issue-39
loosens version specifiers for dependencies, fixes #39
2 parents 05deb4b + 7d0ed60 commit 380572b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ repositories {
3636

3737
dependencies {
3838
testCompile group: 'junit', name: 'junit', version: '4.+'
39-
testCompile group: 'com.github.tomakehurst', name: 'wiremock', version: '1.45'
40-
testCompile group: 'commons-lang', name: 'commons-lang', version: '2.6'
41-
compile group: 'com.ning', name: 'async-http-client', version: '1.6.1'
42-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.3.1'
43-
compile group: 'commons-validator', name: 'commons-validator', version: '1.4.0'
44-
compile group: 'commons-codec', name: 'commons-codec', version: '1.9'
39+
testCompile group: 'com.github.tomakehurst', name: 'wiremock', version: '[1.45,1.99999)'
40+
testCompile group: 'commons-lang', name: 'commons-lang', version: '[2.6,2.99999)'
41+
compile group: 'com.ning', name: 'async-http-client', version: '[1.6.1,1.9)'
42+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '[2.3.1,2.99999)'
43+
compile group: 'commons-validator', name: 'commons-validator', version: '[1.4.0,1.99999)'
44+
compile group: 'commons-codec', name: 'commons-codec', version: '[1.9,1.99999]'
4545
// TODO: find out how to initialize these dependencies properly, or remove them
4646
//compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.5'
4747
//compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.5'

0 commit comments

Comments
 (0)