Skip to content

Commit

Permalink
Still working on build.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
mikereedell committed Dec 22, 2008
1 parent 431073a commit 98cabfb
Showing 1 changed file with 20 additions and 15 deletions.
35 changes: 20 additions & 15 deletions build.xml
@@ -1,36 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>

<project name="sunrisesunsetlib" basedir="." default="all">

<property name="app-name" value="SunriseSunsetLib" />
<property name="build-dir" value="build" />
<property name="dist-dir" value="dist" />

<target name="all" description="Compiles, packages, unit test and generate javadoc">

</target>

<target name="compile" description="Cleanly compiles the sunrisesunset lib.">
<delete includeemptydirs="true">
<fileset dir="${build-dir}"/>
<fileset dir="${build-dir}" />
</delete>


</target>

<target name="package" description="Packages the compiled code into a jar file.">

</target>

<target name="unittest" description="Run the JUnit tests.">

</target>

<target name="javadoc" description="Generate javadoc">

</target>

<target name="clean">


<target name="clean" description="Cleans the build and dist directories.">
<delete includeemptydirs="true">
<fileset dir="${build-dir}" />
</delete>
<delete includeemptydirs="true">
<fileset dir="dist-dir" />
</delete>
</target>
</project>

0 comments on commit 98cabfb

Please sign in to comment.