Author: niallp
Date: Wed Sep 14 04:40:07 2005
New Revision: 280826
URL: http://svn.apache.org/viewcvs?rev=280826&view=rev
Log:
Few minor corrections to the ant build.xml
- change the release directory name from 'm-target' to 'dist' as it was confusing
- use the properties for the build/dist/release homes to exclude from the release, otherwise
if they're hard-coded and someone changes them these directories are included in the source
distro.
Modified:
jakarta/commons/proper/validator/trunk/build.xml
Modified: jakarta/commons/proper/validator/trunk/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/validator/trunk/build.xml?rev=280826&r1=280825&r2=280826&view=diff
==============================================================================
--- jakarta/commons/proper/validator/trunk/build.xml (original)
+++ jakarta/commons/proper/validator/trunk/build.xml Wed Sep 14 04:40:07 2005
@@ -76,7 +76,7 @@
<property name="conf.home" value="conf/share"/>
<!-- The base directory for distribution targets -->
- <property name="dist.home" value="m-target"/>
+ <property name="dist.home" value="dist"/>
<!-- The base directory for release targets -->
<property name="release.home" value="release" />
@@ -364,9 +364,9 @@
<copy todir="${stage.src.dir}/${upload.file.base}-src">
<fileset dir=".">
<exclude name="build.properties"/>
- <exclude name="target/**"/>
- <exclude name="dist/**"/>
- <exclude name="release/**"/>
+ <exclude name="${build.home}/**"/>
+ <exclude name="${dist.home}/**"/>
+ <exclude name="${build.home}/**"/>
</fileset>
</copy>
<mkdir dir="${upload.dir}"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org
|