Commit 639aa7c0 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Minor fix


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@62 b35dd754-fafc-0310-a699-88a17e54d16e
parent 6aca3e1e
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
<!-- ======================================================================================= --> <!-- ======================================================================================= -->
<!-- all =================================================================================== --> <!-- all =================================================================================== -->
<target name="all" depends="war" description="Calls 'war' target" /> <target name="all" depends="jar, javadoc" description="Calls jar and javadoc targets" />
<!-- init ================================================================================== --> <!-- init ================================================================================== -->
<target name="init"> <target name="init">
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
</target> </target>
<!-- javadoc =============================================================================== --> <!-- javadoc =============================================================================== -->
<target name="javadoc" description="Produces Messenger Javadocs"> <target name="javadoc" depends="compile" description="Produces Messenger Javadocs">
<mkdir dir="${javadoc.dest.dir}" /> <mkdir dir="${javadoc.dest.dir}" />
<!-- Run javadoc over all source code --> <!-- Run javadoc over all source code -->
<javadoc <javadoc
...@@ -240,13 +240,6 @@ ...@@ -240,13 +240,6 @@
</classpath> </classpath>
</javac> </javac>
<!-- Copy test resources -->
<!-- <copy todir="${test.dest.dir}">-->
<!-- <fileset dir="${src.test.dir}">-->
<!-- <include name="resources/**/*.*" />-->
<!-- </fileset>-->
<!-- </copy>-->
<!-- Run jUnit --> <!-- Run jUnit -->
<mkdir dir="${test.results.dest.dir}" /> <mkdir dir="${test.results.dest.dir}" />
<junit printsummary="yes" haltonfailure="no" fork="yes" dir="${src.test.dir}"> <junit printsummary="yes" haltonfailure="no" fork="yes" dir="${src.test.dir}">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment