Thread: [Ejtools-cvs] CVS: build build.xml,1.2,1.3 build_application.xml,1.3,1.4
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-04-30 21:05:40
|
Update of /cvsroot/ejtools/build In directory usw-pr-cvs1:/tmp/cvs-serv2874/build Modified Files: build.xml build_application.xml Log Message: Reformat and add doco Index: build.xml =================================================================== RCS file: /cvsroot/ejtools/build/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 26 Apr 2002 06:19:26 -0000 1.2 --- build.xml 30 Apr 2002 21:05:36 -0000 1.3 *************** *** 17,30 **** <echo message="EJTools Build System Help :"/> <echo/> ! <echo message="everything : Blah Blah"/> ! <echo message="build : Blah Blah"/> ! <echo message="dist : Blah Blah"/> ! <echo message="clean : Blah Blah"/> ! <echo message="webapp : Blah Blah"/> ! <echo message="javadoc : Blah Blah"/> ! <echo message="todo : Blah Blah"/> ! <echo message="logo : Blah Blah"/> ! <echo message="package : Blah Blah"/> ! <echo message="tarball : Blah Blah"/> <echo message="------------------------------------------------------------"/> </target> --- 17,30 ---- <echo message="EJTools Build System Help :"/> <echo/> ! <echo message="build : Build every modules"/> ! <echo message="dist : Create the distribution of the modules"/> ! <echo message="clean : Clean everyting"/> ! <echo message="webapp : Create the Web Applications"/> ! <echo message="javadoc : Generate the JavaDoc for each module"/> ! <echo message="todo : Generate the ToDo list for each module"/> ! <echo message="logo : Create the application logo"/> ! <echo message="package : Package the applications"/> ! <echo message="website : Create the website"/> ! <echo message="tarball : Create a source tarball"/> <echo message="------------------------------------------------------------"/> </target> *************** *** 62,66 **** </target> <!-- ======================================== --> ! <!-- Executes the javadoc target on each modules --> <!-- ======================================== --> <target name="javadoc" description=""> --- 62,66 ---- </target> <!-- ======================================== --> ! <!-- Create the javadoc website on each modules --> <!-- ======================================== --> <target name="javadoc" description=""> *************** *** 71,75 **** </target> <!-- ======================================== --> ! <!-- Executes the todo target on each modules --> <!-- ======================================== --> <target name="todo" description=""> --- 71,75 ---- </target> <!-- ======================================== --> ! <!-- Create the todo website on each modules --> <!-- ======================================== --> <target name="todo" description=""> *************** *** 78,88 **** </antcall> </target> ! <!-- ==================== Logo Target ===================================== --> ! <target name="logo" depends="build" description=""> <antcall target="sub.applications"> <param name="target" value="logo"/> </antcall> </target> ! <!-- ==================== Web Application Target ===================================== --> <target name="webapp" description=""> <antcall target="sub.applications"> --- 78,92 ---- </antcall> </target> ! <!-- ======================================== --> ! <!-- Create the logo for each application --> ! <!-- ======================================== --> ! <target name="logo" description=""> <antcall target="sub.applications"> <param name="target" value="logo"/> </antcall> </target> ! <!-- ======================================== --> ! <!-- Create the webapp for each application --> ! <!-- ======================================== --> <target name="webapp" description=""> <antcall target="sub.applications"> *************** *** 90,94 **** </antcall> </target> ! <!-- ==================== Package Target ===================================== --> <target name="package" description=""> <antcall target="sub.applications"> --- 94,100 ---- </antcall> </target> ! <!-- ======================================== --> ! <!-- Create the distribution package for each application --> ! <!-- ======================================== --> <target name="package" description=""> <antcall target="sub.applications"> *************** *** 97,105 **** </target> <!-- ======================================== --> - <!-- WebSite --> <!-- Build the EJTools website --> <!-- ======================================== --> <target name="website" depends="javadoc, todo" description=""> <ant antfile="build/build_website.xml"/> </target> <!-- **************************************** --> --- 103,115 ---- </target> <!-- ======================================== --> <!-- Build the EJTools website --> <!-- ======================================== --> <target name="website" depends="javadoc, todo" description=""> <ant antfile="build/build_website.xml"/> + </target> + <!-- ======================================== --> + <!-- Build the Source TarBall --> + <!-- ======================================== --> + <target name="tarball" depends="clean" description=""> </target> <!-- **************************************** --> Index: build_application.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_application.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build_application.xml 28 Apr 2002 10:19:38 -0000 1.3 --- build_application.xml 30 Apr 2002 21:05:36 -0000 1.4 *************** *** 24,27 **** --- 24,28 ---- <property name="dist.lib" value="${dist.home}/lib"/> <property name="dist.lib.ext" value="${dist.lib}/ext"/> + <property name="dist.logs" value="${dist.home}/logs"/> <property name="dist.webapp" value="${module.root}/webapp"/> <property name="dist.webapp.webinf" value="${dist.webapp}/WEB-INF"/> *************** *** 80,83 **** --- 81,85 ---- <mkdir dir="${dist.lib}"/> <mkdir dir="${dist.lib.ext}"/> + <mkdir dir="${dist.logs}"/> <mkdir dir="${dist.webapp}"/> <mkdir dir="${dist.webapp.webinf}"/> |