Use uniform version withing our gradle dependencies

Make sure we use the same provided and runtime JRuby with our gradle
projects

Fixes: #7421

Fixes #7425
This commit is contained in:
Pier-Hugues Pellerin 2017-06-12 15:54:41 -04:00
parent 7dcf9ad763
commit 6e6589e773
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ dependencies {
compile 'com.google.guava:guava:21.0'
compile 'commons-io:commons-io:2.5'
runtime 'joda-time:joda-time:2.8.2'
runtime 'org.jruby:jruby-core:1.7.26'
runtime 'org.jruby:jruby-core:9.1.10.0'
}
javadoc {

View file

@ -114,5 +114,5 @@ dependencies {
testCompile 'junit:junit:4.12'
testCompile 'net.javacrumbs.json-unit:json-unit:1.9.0'
testCompile 'org.elasticsearch:securemock:1.2'
provided 'org.jruby:jruby-core:1.7.25'
provided 'org.jruby:jruby-core:9.1.10.0'
}