Skip to content

Commit

Permalink
removed zip_src target from build.xml for ticket 70
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Gaertner authored and Markus Gaertner committed Mar 19, 2009
1 parent e720bf7 commit bdd83a8
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions build.xml
Expand Up @@ -28,7 +28,7 @@
<target name="testbuild" depends="clean, unit_test, execute_fitnesse_tests"
description="builds code from scratch, runs all the unit tests and acceptance tests"/>

<target name="build_distribution" depends="zip_src, zip_bin"
<target name="build_distribution" depends="zip_bin"
description="The thing you do when distributing a new release."/>

<target name="assemble_bin" depends="clean_dist, jar, copy_distribution"
Expand Down Expand Up @@ -62,23 +62,6 @@
<zip zipfile="fitnesse${DSTAMP}.zip" basedir="dist" includes="fitnesse/**" excludes="**/Thumbs.db"/>
</target>

<target name="zip_src" depends="clean_dist" description="Packages all the source into a .zip file">
<tstamp/>
<zip zipfile="fitnesse_src${DSTAMP}.zip">
<fileset dir=".">
<include name="src/**"/>
<include name="srcFitServerTests/**"/>
<include name="lib/**"/>
<include name="extra/**"/>
<include name="build.xml"/>
<include name="dotnet/**"/>
<include name="BUILD_README.txt"/>
<include name="templates/**"/>
<exclude name="**/fitnesse*.zip"/>
</fileset>
</zip>
</target>

<target name="jar" depends="build, copyResources" description="generate the jar file">
<mkdir dir="dist"/>
<delete file="dist/fitnesse.jar"/>
Expand Down

0 comments on commit bdd83a8

Please sign in to comment.