Skip to content

Commit

Permalink
Removed tabs in build.xml
Browse files Browse the repository at this point in the history
Change-Id: Ic0ff8e1653edc5f021fa4ee8fd94d2c85b0b611b
  • Loading branch information
Mike Wiederhold committed Mar 14, 2011
1 parent cec115d commit 939a096
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions build.xml
Expand Up @@ -14,19 +14,19 @@
<include name="**/*.jar" />
</fileset>
</path>
<target name="compile">

<target name="compile">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="build.classpath" deprecation="on" includeantruntime="false">
<compilerarg value="-Xlint:unchecked"/>
</javac>
<antcall target="makejar"/>
</target>

<target name ="makejar" description="Create a jar for the jtap project">
<jar jarfile="build/jtap.jar" includes="**/*.class" basedir="${classes.dir}"/>
</target>
<target name ="makejar" description="Create a jar for the jtap project">
<jar jarfile="build/jtap.jar" includes="**/*.class" basedir="${classes.dir}"/>
</target>

<target name="clean">
<delete includeemptydirs="true">
<fileset dir="build" includes="**/*"/>
Expand All @@ -42,7 +42,5 @@
</fileset>
</javadoc>
</target>


</project>

0 comments on commit 939a096

Please sign in to comment.