Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8" ?>
- <project name="project" default="jar" basedir=".">
- <target name="compile" description="Compile source">
- <mkdir dir="bin" />
- <javac srcdir="src" includes="**" destdir="bin"/>
- <copy todir="bin">
- <fileset dir="src" />
- </copy>
- </target>
- <target name="jar" description="Package into JAR" depends="compile">
- <jar destfile="project.jar" basedir="bin" compress="true" />
- </target>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment