Skip to content

Commit 856fb2c

Browse files
committed
Move JRuby dependency below Joda
JRuby includes a copy of joda classes with the same package names. This commit changes the order of the loaded jars to load the original joda classes first.
1 parent a26059f commit 856fb2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,12 +262,12 @@ project('spring-context') {
262262
}
263263
compile("org.beanshell:bsh:2.0b4", optional)
264264
compile("org.codehaus.groovy:groovy-all:1.6.3", optional)
265-
compile("org.jruby:jruby:1.4.0", optional)
266265
compile("org.hibernate:hibernate-validator:4.2.0.Final") { dep ->
267266
optional dep
268267
exclude group: 'org.slf4j', module: 'slf4j-api'
269268
}
270269
compile("joda-time:joda-time:1.6", optional)
270+
compile("org.jruby:jruby:1.4.0", optional)
271271
compile("javax.cache:cache-api:0.5", optional)
272272
compile("net.sf.ehcache:ehcache-core:2.0.0", optional)
273273
compile("org.slf4j:slf4j-api:1.6.1", optional)

0 commit comments

Comments
 (0)