craigmcc 2002/10/01 18:50:13 Modified: . build.xml contrib/struts-el build.xml Log: Update the main build.xml file to include struts-el in the new "contrib" directory, so that the binaries will be included with nightly builds. Revision Changes Path 1.80 +22 -1 jakarta-struts/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-struts/build.xml,v retrieving revision 1.79 retrieving revision 1.80 diff -u -r1.79 -r1.80 --- build.xml 14 Aug 2002 18:49:44 -0000 1.79 +++ build.xml 2 Oct 2002 01:50:13 -0000 1.80 @@ -408,9 +408,30 @@ </target> <!-- + Build the contrib modules that are packaged with the binary +--> + <target name="dist.contrib" depends="dist.source"> + + <mkdir dir="${dist.home}/contrib"/> + + <!-- The STRUTS-EL Tag Library --> + <ant dir="${basedir}/contrib/struts-el" + target="clean" inheritAll="false"/> + <ant dir="${basedir}/contrib/struts-el" + target="dist" inheritAll="false"/> + <mkdir dir="${dist.home}/contrib/struts-el"/> + <copy todir="${dist.home}/contrib/struts-el"> + <fileset dir="${basedir}/contrib/struts-el/dist"/> + </copy> + + </target> + + +<!-- Construct complete binary distribution --> - <target name="dist" depends="dist.library,dist.webapps,dist.source" + <target name="dist" + depends="dist.library,dist.webapps,dist.source,dist.contrib" description="Construct binary distribution"/> <!-- 1.3 +1 -1 jakarta-struts/contrib/struts-el/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-struts/contrib/struts-el/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- build.xml 1 Oct 2002 05:21:43 -0000 1.2 +++ build.xml 2 Oct 2002 01:50:13 -0000 1.3 @@ -91,7 +91,7 @@ --> <!-- Output directory name for all files generated by the build process --> - <property name="build.home" value="${basedir}/target"/> + <property name="build.home" value="target"/> <!-- Should Java compilations set the debug compiler option? --> <property name="compile.debug" value="true" />
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>