From: <th...@us...> - 2002-09-12 20:42:16
|
Update of /cvsroot/struts/artimus/WEB-INF/src In directory usw-pr-cvs1:/tmp/cvs-serv25313 Modified Files: status.txt build.xml Log Message: + Post beta 3. + Change to poolman adaptor. + Adjust build to use latest commons-scaffold and struts-scaffold packaging. + Form,Bean: Move default timestamp to Bean class (where it belongs). + ActionForm: Remove as obsolete. + message.jsp: Restore tags version. Index: status.txt =================================================================== RCS file: /cvsroot/struts/artimus/WEB-INF/src/status.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** status.txt 23 Aug 2002 18:50:21 -0000 1.4 --- status.txt 12 Sep 2002 20:42:13 -0000 1.5 *************** *** 89,92 **** --- 89,107 ---- + 12-SEP-02 + --------- + + Post beta 3. + + Change to poolman adaptor. + + Adjust build to use latest commons-scaffold and struts-scaffold packaging. + + Form,Bean: Move default timestamp to Bean class (where it belongs). + + ActionForm: Remove as obsolete. + + message.jsp: Restore tags version. + + < ... /> + + + Roll back to 07/02/2001 validator + + < ... /> + 23-AUG-02 --------- Index: build.xml =================================================================== RCS file: /cvsroot/struts/artimus/WEB-INF/src/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 6 Sep 2002 20:45:21 -0000 1.4 --- build.xml 12 Sep 2002 20:42:13 -0000 1.5 *************** *** 7,12 **** <!-- Change this to compile against a different version --> ! <property name="compile.classpath" value="compile.classpath_1_0"/> ! <property name="dev.scaffold" value="commons-scaffold_1_0.jar"/> <!-- Local system paths --> --- 7,11 ---- <!-- Change this to compile against a different version --> ! <property name="compile.classpath" value="compile.classpath"/> <!-- Local system paths --> *************** *** 18,22 **** <property name="project.title" value="artimus"/> <property name="project.version" value="0.6"/> ! <property name="project.distname" value="artimus_1_0_b1_3"/> <property name="project.source" value="src/java/org/apache/artimus"/> --- 17,21 ---- <property name="project.title" value="artimus"/> <property name="project.version" value="0.6"/> ! <property name="project.distname" value="artimus_1_0_b3"/> <property name="project.source" value="src/java/org/apache/artimus"/> *************** *** 31,41 **** <!-- Build working classpath --> ! <path id="compile.classpath_1_0"> <pathelement path ="lib/lucene_1_2.jar"/> <pathelement path ="lib/poolman_2_0_4.jar"/> <pathelement path ="lib/commons-digester.jar"/> ! <pathelement path ="lib/commons-scaffold_1_0.jar"/> ! <pathelement path ="lib/struts_1_0_2.jar"/> ! <pathelement path ="lib/struts-scaffold_1_0.jar"/> <pathelement path ="lib/struts-validator_1_0.jar"/> <pathelement path ="classes"/> --- 30,40 ---- <!-- Build working classpath --> ! <path id="compile.classpath"> <pathelement path ="lib/lucene_1_2.jar"/> <pathelement path ="lib/poolman_2_0_4.jar"/> <pathelement path ="lib/commons-digester.jar"/> ! <pathelement path ="lib/commons-scaffold.jar"/> ! <pathelement path ="lib/struts.jar"/> ! <pathelement path ="lib/struts-scaffold.jar"/> <pathelement path ="lib/struts-validator_1_0.jar"/> <pathelement path ="classes"/> *************** *** 43,59 **** </path> - <!-- Build working classpath --> - <path id="compile.classpath_1_1"> - <pathelement path ="lib/lucene_1_2.jar"/> - <pathelement path ="lib/poolman_2_0_4.jar"/> - <pathelement path ="lib/commons-beanutils.jar"/> - <pathelement path ="lib/commons-digester.jar"/> - <pathelement path ="lib/commons-scaffold_1_1.jar"/> - <pathelement path ="lib/struts_20020707.jar"/> - <pathelement path ="lib/struts-scaffold_1_1.jar"/> - <pathelement path ="classes"/> - <pathelement path ="${classpath}"/> - </path> - <!-- Remove classes directory for clean build --> --- 42,45 ---- *************** *** 119,136 **** - <!-- Grab the latest development jars --> - <target name="dev"> - <copy todir="lib" includeEmptyDirs="no"> - <fileset dir="${distpath.project}"> - <patternset> - <include name="${dev.scaffold}"/> - </patternset> - </fileset> - </copy> - </target> - - <!-- Normal build of application --> ! <target name="compile" depends="prepare,conf,pages,resources,dev"> <copy file="../LICENSE" --- 105,110 ---- <!-- Normal build of application --> ! <target name="compile" depends="prepare,conf,pages,resources"> <copy file="../LICENSE" *************** *** 141,144 **** --- 115,122 ---- </javac> </target> + + + <!-- Clean build of application --> + <target name="clean.build" depends="clean,compile"/> |