Author: nick
Date: Mon Apr 2 11:32:12 2007
New Revision: 524881
URL: http://svn.apache.org/viewvc?view=rev&rev=524881
Log:
Add in a clean step before compile in dist
Modified:
jakarta/poi/trunk/build.xml
Modified: jakarta/poi/trunk/build.xml
URL:
http://svn.apache.org/viewvc/jakarta/poi/trunk/build.xml?view=diff&rev=524881&r1=524880&r2=524881
==============================================================================
--- jakarta/poi/trunk/build.xml (original)
+++ jakarta/poi/trunk/build.xml Mon Apr 2 11:32:12 2007
@@ -807,7 +807,7 @@
description="Generates POI's website's contents"/>
- <target name="maven-dist" depends="compile" description="Builds the jar
files for a maven distribution, and the POM to go with them">
+ <target name="maven-dist" depends="clean,compile" description="Builds the
jar files for a maven distribution, and the POM to go with them">
<!-- Build a Jar of all the class files -->
<jar destfile="${mavendist.dir}/${jar.name}-${version.id}.jar">
<manifest>
@@ -904,8 +904,8 @@
</jar>
</target>
- <target name="dist" depends="fail-unless-tools-are-available, compile, site,
jar"
- description="Creates the entire distribution into build/dist">
+ <target name="dist" depends="clean, fail-unless-tools-are-available,
compile, site, jar"
+ description="Creates the entire distribution into build/dist, from
scratch">
<property name="zipdir" value="${jar.name}-${version.id}" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List: http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/