Skip to content

Commit

Permalink
Remove skipexisting attribute from ant get tasks
Browse files Browse the repository at this point in the history
This caused existing old versions of jar files never to be updated.
  • Loading branch information
hns committed May 25, 2012
1 parent 88a15f5 commit 2442919
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testsrc/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

<target name="get-junit">
<mkdir dir="lib"/>
<get src="${test.junit.url}" dest="lib/junit.jar" usetimestamp="true" skipexisting="true"/>
<get src="${test.junit.url}" dest="lib/junit.jar" usetimestamp="true"/>
</target>

<target name="junit-compile">
Expand Down Expand Up @@ -98,8 +98,8 @@
</target>

<target name="coverage-instrument">
<get src="${test.emma.url}" dest="lib/emma.jar" usetimestamp="true" skipexisting="true"/>
<get src="${test.emma_ant.url}" dest="lib/emma_ant.jar" usetimestamp="true" skipexisting="true"/>
<get src="${test.emma.url}" dest="lib/emma.jar" usetimestamp="true"/>
<get src="${test.emma_ant.url}" dest="lib/emma_ant.jar" usetimestamp="true"/>
<property name="coverage.dir" location="${build.dir}/coverage"/>
<property name="coverage.classes.dir" location="${build.dir}/coverage/classes"/>
<mkdir dir="${coverage.classes.dir}"/>
Expand Down

0 comments on commit 2442919

Please sign in to comment.