Browse Source

Add in a clean step before compile in dist

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@524881 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_0_RC4
Nick Burch 17 years ago
parent
commit
0a3756d28d
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      build.xml

+ 3
- 3
build.xml View File

@@ -807,7 +807,7 @@ FORREST_HOME environment variable!</echo>
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 @@ FORREST_HOME environment variable!</echo>
</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}" />


Loading…
Cancel
Save