upgrade to groovy 1.8.2

This commit is contained in:
Shay Banon 2011-09-07 10:50:12 +03:00
parent 60a73c475f
commit 189d117dcb
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
<orderEntry type="module-library">
<library name="groovy">
<CLASSES>
<root url="jar://$GRADLE_REPOSITORY$/org.codehaus.groovy/groovy-all/jars/groovy-all-1.8.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.codehaus.groovy/groovy-all/jars/groovy-all-1.8.2.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />

View File

@ -30,8 +30,8 @@ configurations {
dependencies {
compile project(':elasticsearch')
groovy group: 'org.codehaus.groovy', name: 'groovy-all', version: '1.8.1'
distLib('org.codehaus.groovy:groovy-all:1.8.1') { transitive = false }
groovy group: 'org.codehaus.groovy', name: 'groovy-all', version: '1.8.2'
distLib('org.codehaus.groovy:groovy-all:1.8.2') { transitive = false }
//testCompile('junit:junit:4.8.1') {transitive = false}
}