Commit 175beeea authored by Quality Assurance's avatar Quality Assurance Committed by qa

Pared down targets some more

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5828 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7d1963bc
......@@ -385,13 +385,6 @@
<echo>Wildfire server started.</echo>
</target>
<!-- deployjar ============================================================================= -->
<target name="deployjar" depends="wildfire" description="Pushes JARs to specified web location.">
<copy todir="${deploy.jar.dir}" overwrite="${overwrite}">
<fileset dir="${jar.dest.dir}" includes="*.jar"/>
</copy>
</target>
<!-- javadoc =============================================================================== -->
<target name="javadoc" depends="init" description="Produces Wildfire Javadocs">
<mkdir dir="${javadoc.dest.dir}"/>
......@@ -1224,17 +1217,20 @@
</target>
<!-- clean-jspc ============================================================================ -->
<target name="clean-jspc" description="Cleans all JSPC output">
<!-- Cleans all JSPC output -->
<target name="clean-jspc" >
<delete dir="${jspc.dest.dir}"/>
</target>
<!-- clean-test ============================================================================ -->
<target name="clean-test" description="Cleans all compiled test classes">
<!-- Cleans all compiled test classes -->
<target name="clean-test" >
<delete dir="${test.classes.dest.dir}"/>
</target>
<!-- clean-plugins ========================================================================= -->
<target name="clean-plugins" description="Cleans all generated plugins">
<!-- Cleans all generated plugins -->
<target name="clean-plugins" >
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${plugin.dest.dir}" excludes="admin/**/*.*" />
</delete>
......
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