Skip to content

Instantly share code, notes, and snippets.

@Zegis
Last active December 27, 2015 23:53
Show Gist options
  • Save Zegis/9aef5f475e3ac92a91f7 to your computer and use it in GitHub Desktop.
Save Zegis/9aef5f475e3ac92a91f7 to your computer and use it in GitHub Desktop.
Formatting modification
<target name="download-jchart">
<mkdir dir="lib"/>
<get
src="https://repo1.maven.org/maven2/org/jfree/jfreechart/1.0.19/jfreechart-1.0.19.jar"
dest="lib/" usetimestamp="true"
/>
<get
src="https://repo1.maven.org/maven2/org/jfree/jcommon/1.0.23/jcommon-1.0.23.jar"
dest="lib/" usetimestamp="true"
/>
</target>
<target depends="download-jchart" name="init">
<--! Add this copy after instructions to make bin directory and copy other files -->
<copy includeemptydirs="false" todir="bin">
<fileset dir="lib/" includes="*.jar"/>
</copy>
<--! Other stuff -->
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment