Hi everyone,

I am expanding the build.xml generation and this is my first patch.
The main reason is to get the nightlies running (a job that Craig made),
which depends on the clean and dist target and the dist should end up in
the dist directory. 
I will add javadoc generation, test runs and more when appropiate. 
That will come later however..

Mvgr,
Martin



Index: src/plugins/ant/plugin.jelly
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/ant/plugin.jelly,v
retrieving revision 1.12
diff -u -r1.12 plugin.jelly
--- src/plugins/ant/plugin.jelly	10 Jul 2002 01:46:13 -0000	1.12
+++ src/plugins/ant/plugin.jelly	10 Jul 2002 11:28:35 -0000
@@ -53,6 +53,21 @@
     />
 
   </target>
+  
+  <target
+    name="clean">
+    <delete dir="target"/>
+    <delete dir="dist"/>
+  </target>
+
+  <target
+    name="dist"
+    depends="jar">
+    <mkdir dir="dist"/>
+    <copy todir="dist">
+      <fileset dir="target"/>
+    </copy>
+  </target>
 
   <target
     name="get-deps">

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to