jstrachan 2003/01/22 14:31:41
Modified: messenger build.xml
Log:
Regenerated the ant build script using the latest patches to the Ant plugin for
Maven - which should mimick a normal commons Ant build I think.
Revision Changes Path
1.36 +6 -2 jakarta-commons-sandbox/messenger/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/messenger/build.xml,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- build.xml 22 Jan 2003 21:00:03 -0000 1.35
+++ build.xml 22 Jan 2003 22:31:41 -0000 1.36
@@ -11,7 +11,7 @@
</property>
<property name="distdir" value="dist">
</property>
- <property name="javadocdir" value="target/docs/apidocs">
+ <property name="javadocdir" value="dist/docs/api">
</property>
<property name="final.name" value="commons-messenger-1.0-dev-10">
</property>
@@ -48,12 +48,16 @@
</delete>
<delete dir="${distdir}">
</delete>
+ <delete dir="lib">
+ </delete>
</target>
<target name="dist" description="o Create a distribution" depends="jar, javadoc">
<mkdir dir="dist">
</mkdir>
<copy todir="dist">
- <fileset dir="${defaulttargetdir}">
+ <fileset dir="${defaulttargetdir}" includes="*.jar">
+ </fileset>
+ <fileset dir="${basedir}" includes="LICENSE*, README*">
</fileset>
</copy>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>