Skip to content

Commit

Permalink
Migrate to ant build system.
Browse files Browse the repository at this point in the history
  • Loading branch information
rosslagerwall committed May 30, 2011
1 parent bf7c3c5 commit 800ef7a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<project name="BackupRotator" default="compile">

<target name="clean">
<delete dir="bin" />
<delete file="BackupRotator.jar" />
</target>

<target name="compile">
<mkdir dir="bin" />
<javac srcdir="src" destdir="bin" includeantruntime="false" />
</target>

<target name="jar" depends="compile">
<jar destfile="BackupRotator.jar" basedir="bin">
<manifest>
<attribute name="Main-Class" value="backuprotator/BackupRotator" />
</manifest>
</jar>
</target>

</project>

0 comments on commit 800ef7a

Please sign in to comment.