rleland 2003/06/18 20:30:46
Modified: . build.xml
Log:
Roll back changes so that inorder to build struts,
a user must first go to the contrib.struts-legacy
directory and do a seperate build. This was done because
when a recursive build was performed the target was set to the
top, level of struts instead of contrib/struts-legacy/target which resulted
in the struts-legacy.jar file not being created.
Gump now builds struts-legacy as a seperate target.
Revision Changes Path
1.108 +2 -20 jakarta-struts/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/build.xml,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- build.xml 11 Jun 2003 18:19:35 -0000 1.107
+++ build.xml 19 Jun 2003 03:30:46 -0000 1.108
@@ -395,15 +395,6 @@
</target>
<!--
- Construct distributable struts legacy support for datasources
--->
- <target name="dist.legacy" >
- <ant antfile="build.xml" dir="contrib/struts-legacy"
- target="dist"/>
- </target>
-
-
-<!--
Build the contrib modules that are packaged with the binary
-->
<target name="dist.contrib" depends="dist.source" if="jstl.jar">
@@ -427,7 +418,7 @@
Construct complete binary distribution
-->
<target name="dist"
- depends="dist.legacy,dist.library,dist.webapps,dist.source,dist.contrib"
+ depends="dist.library,dist.webapps,dist.source,dist.contrib"
description="Construct binary distribution"/>
<!--
@@ -727,20 +718,11 @@
</copy>
</target>
-
-<!--
- Clean struts legacy distribution
--->
- <target name="clean.legacy" >
- <ant antfile="build.xml" dir="contrib/struts-legacy"
- inheritall="false" target="clean"/>
- </target>
-
<!--
Clean up build and distribution directories
-->
- <target name="clean" depends="clean.legacy"
+ <target name="clean"
description="Clean build and distribution directories">
<delete dir="${build.home}"/>
<delete dir="${dist.home}"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]