Created
January 27, 2011 16:23
-
-
Save chrisa/798726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!-- ANT --> | |
| <project name="Build Stuff" default="jar"> | |
| <path id="classpath"> | |
| <fileset dir="lib" includes="**/*.jar" /> | |
| </path> | |
| <target name="compile-stuff"> | |
| <mkdir dir="build/classes"/> | |
| <javac classpathref="classpath" | |
| srcdir="." | |
| destdir="build/classes" | |
| includeantruntime="false"/> | |
| </target> | |
| <target name="jar" depends="compile-stuff"> | |
| <mkdir dir="build/jar" /> | |
| <jar destfile="build/jar/stuff.jar" basedir="build/classes" /> | |
| </target> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment