Skip to content

Commit

Permalink
Fix ant jar: remove duplicate classes and old tools.
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Chen <taiyang.chen@gmail.com> (github: taiyangc)
  • Loading branch information
taiyangc committed Nov 7, 2015
1 parent dd71a4d commit 807abd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
</javac> </javac>
</target> </target>


<target name="jar" depends="build,tools" description="Jar the files"> <target name="jar" depends="build" description="Jar the files">
<mkdir dir="${buildlib}" /> <mkdir dir="${buildlib}" />
<jar destfile="${buildlib}/jmdns.jar" manifest="${lib}/jmdns.manifest" basedir="${dest}"> <jar destfile="${buildlib}/jmdns.jar" manifest="${lib}/jmdns.manifest">
<fileset dir="${dest}" defaultexcludes="yes"> <fileset dir="${dest}" defaultexcludes="yes">
<include name="**/*.class" /> <include name="**/*.class" />
<exclude name="**/test/*.class" /> <exclude name="**/test/*.class" />
Expand Down

0 comments on commit 807abd8

Please sign in to comment.