update groovy to 2.1.7-indy

master
melvin 2013-09-12 13:16:04 +08:00
parent f4e65f1a18
commit 89610b543a
1 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<property name="target" value="1.7"/>
<property name="source" value="1.7"/>
<property name="lib" value="release/lib" />
<property name="groovy-version" value="2.1.6" />
<property name="groovy-version" value="2.1.7-indy" />
<path id="classpath">
<fileset dir="${lib}">
@ -18,7 +18,9 @@
<!-- deps - Download dependencies -->
<target name="deps" unless="skip.download">
<echo message="downloading groovy to ${lib}"/>
<get src="http://repo1.maven.org/maven2/org/codehaus/groovy/groovy-all/${groovy-version}/groovy-all-${groovy-version}.jar" dest="${lib}" skipexisting="true" />
<get src="http://search.maven.org/remotecontent?filepath=org/codehaus/groovy/groovy-all/2.1.7/groovy-all-${groovy-version}.jar"
dest="${lib}/groovy-all-${groovy-version}.jar"
skipexisting="true" />
</target>
<!-- init - Create temporary directory to build the program -->