change from usetimestamp to skipexisting for downloading dependencies

master
melvin 2013-02-24 20:00:02 +08:00
parent 5cfd121be5
commit 60e88c01e3
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<!-- 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/2.0.6/groovy-all-2.0.6.jar" dest="${lib}" usetimestamp="true" />
<get src="http://repo1.maven.org/maven2/org/codehaus/groovy/groovy-all/2.0.6/groovy-all-2.0.6.jar" dest="${lib}" skipexisting="true" />
</target>
<!-- init - Create temporary directory to build the program -->