matth 2004/10/14 06:49:52
Modified: betwixt build.xml
Log:
replacing absolute paths with relative ones in Maven generated Ant build file
Revision Changes Path
1.16 +8 -8 jakarta-commons/betwixt/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/betwixt/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- build.xml 13 Oct 2004 20:24:49 -0000 1.15
+++ build.xml 14 Oct 2004 13:49:52 -0000 1.16
@@ -4,17 +4,17 @@
on date October 13 2004, time 2122-->
<project default="jar" name="commons-betwixt" basedir=".">
- <property name="defaulttargetdir"
value="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/target">
+ <property name="defaulttargetdir" value="target">
</property>
- <property name="libdir"
value="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/target/lib">
+ <property name="libdir" value="target/lib">
</property>
- <property name="classesdir"
value="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/target/classes">
+ <property name="classesdir" value="target/classes">
</property>
- <property name="testclassesdir"
value="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/target/test-classes">
+ <property name="testclassesdir" value="target/test-classes">
</property>
- <property name="testclassesdir"
value="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/target/test-classes">
+ <property name="testclassesdir" value="target/test-classes">
</property>
- <property name="testreportdir"
value="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/target/test-reports">
+ <property name="testreportdir" value="target/test-reports">
</property>
<property name="distdir" value="dist">
</property>
@@ -128,7 +128,7 @@
</classpath>
</javac>
<copy todir="${testclassesdir}">
- <fileset
dir="/Volumes/gSpecials/library/jakarta/jakarta-commons/betwixt/src/test">
+ <fileset dir="src/test">
<include name="**/*.betwixt">
</include>
</fileset>
@@ -182,4 +182,4 @@
<unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
</unjar>
</target>
-</project>
\ No newline at end of file
+</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]