asmuts 02/01/15 09:58:48
Modified: . build.xml default.properties jcs_filters.properties
Log:
created a dev_std target that jars and filters, can change back
Revision Changes Path
1.6 +42 -2 jakarta-turbine-stratum/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-stratum/build.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.xml 15 Jan 2002 17:21:52 -0000 1.5
+++ build.xml 15 Jan 2002 17:58:48 -0000 1.6
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
-<project name="Torque" default="jar" basedir=".">
+<project name="Torque" default="dev_std" basedir=".">
<!-- Allow any user specific values to override the defaults -->
<property file="${user.home}/build.properties" />
@@ -19,6 +19,7 @@
<pathelement location="${jgl.jar}"/>
<pathelement location="${jetty.jar}"/>
<pathelement location="${microstar.xml.jar}"/>
+ <pathelement location="${j2ee.jar}"/>
<pathelement location="${servlet.jar}"/>
<pathelement location="${javamail.jar}"/>
<pathelement location="${tomcat.jar}"/>
@@ -152,6 +153,40 @@
</target>
+
+ <!-- ================================================================== -->
+ <!-- FILTER Scripts and Config Files
-->
+ <!-- ================================================================== -->
+
+ <target
+ name="filter_jcs"
+ depends="init"
+ description="==> filters the jcs scripts and conf files">
+
+ <filter filtersfile="jcs_filters.properties"/>
+
+ <copy todir="${build.dir}/scripts" filtering="true">
+ <fileset dir="${src.dir}/scripts"/>
+ </copy>
+
+ <copy todir="${build.dir}/conf" filtering="true">
+ <fileset dir="${src.dir}/conf"/>
+ </copy>
+
+ </target>
+
+
+ <!-- ================================================================== -->
+ <!-- Dev Standard Build
-->
+ <!-- ================================================================== -->
+
+ <target
+ name="dev_std"
+ depends="jar,filter_jcs"
+ description="==> ">
+ </target>
+
+
<!-- ================================================================== -->
<!-- J A V A D O C S -->
<!-- ================================================================== -->
@@ -218,9 +253,14 @@
</copy>
</target>
+
+ <!-- ================================================================== -->
+ <!-- Get clean copy of source -->
+ <!-- ================================================================== -->
+
<target
name="source"
- >
+ description="==> gets a clean copy of source">
<copy todir="${build.dir}/source" filtering="no">
<fileset dir="${src.dir}/java">
1.6 +1 -0 jakarta-turbine-stratum/default.properties
Index: default.properties
===================================================================
RCS file: /home/cvs/jakarta-turbine-stratum/default.properties,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- default.properties 15 Jan 2002 17:21:52 -0000 1.5
+++ default.properties 15 Jan 2002 17:58:48 -0000 1.6
@@ -40,6 +40,7 @@
jetty.jar = ${lib.repo}/com.mortbay.jetty.jar
microstar.xml.jar = ${lib.repo}/com.microstar.xml.jar
servlet.jar = ${lib.repo}/servlet-2.2.jar
+j2ee.jar = ${lib.repo}/j2ee.jar
javamail.jar = ${lib.repo}/mail-1.2.jar
jaf.jar = ${lib.repo}/activation-1.0.1.jar
tomcat.jar = ${lib.repo}/tomcat3.2.1.jar
1.2 +2 -1 jakarta-turbine-stratum/jcs_filters.properties
Index: jcs_filters.properties
===================================================================
RCS file: /home/cvs/jakarta-turbine-stratum/jcs_filters.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- jcs_filters.properties 15 Jan 2002 17:49:29 -0000 1.1
+++ jcs_filters.properties 15 Jan 2002 17:58:48 -0000 1.2
@@ -1,2 +1,3 @@
-#can pull this value from ant, just setting the stage
+#can pull this value from ant, just setting the stage
project_home=g:/dev/jakarata-turbine-stratum/
+
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>