Groovy Plugins: Upgrade to 1.8.1, closes #1175.

This commit is contained in:
Shay Banon 2011-07-28 20:41:15 +03:00
parent 615fc435cc
commit b104c19e7a
2 changed files with 4 additions and 4 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.8.0.jar!/" /> <root url="jar://$GRADLE_REPOSITORY$/org.codehaus.groovy/groovy-all/jars/groovy-all-1.8.1.jar!/" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES /> <SOURCES />

View File

@ -30,9 +30,9 @@ configurations {
dependencies { dependencies {
compile project(':elasticsearch') compile project(':elasticsearch')
groovy group: 'org.codehaus.groovy', name: 'groovy-all', version: '1.8.0' groovy group: 'org.codehaus.groovy', name: 'groovy-all', version: '1.8.1'
distLib('org.codehaus.groovy:groovy-all:1.8.0') { transitive = false } distLib('org.codehaus.groovy:groovy-all:1.8.1') { transitive = false }
testCompile('junit:junit:4.8.1') {transitive = false} //testCompile('junit:junit:4.8.1') {transitive = false}
} }
task explodedDist(dependsOn: [jar], description: 'Builds the plugin zip file') << { task explodedDist(dependsOn: [jar], description: 'Builds the plugin zip file') << {