upgrade to groovy 1.7.10

This commit is contained in:
kimchy 2011-04-06 16:31:25 +03:00
parent 6317483fe3
commit 6061656170
2 changed files with 3 additions and 3 deletions

View File

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

View File

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