craigmcc 2004/04/10 14:23:06
Modified: chain/apps/mailreader build.xml
Log:
Tweak build.xml to allow property substitution of the Maven executable
to actually work on a Unix system.
Revision Changes Path
1.3 +1 -1 jakarta-commons-sandbox/chain/apps/mailreader/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/chain/apps/mailreader/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.xml 27 Mar 2004 18:21:30 -0000 1.2
+++ build.xml 10 Apr 2004 21:23:06 -0000 1.3
@@ -6,7 +6,7 @@
<delete dir="target"/>
</target>
<target description="Call Maven goal under subdirectory" name="maven">
- <exec executable="maven.bat" dir="${exec.dir}">
+ <exec executable="${maven.exec}" dir="${exec.dir}">
<arg line="${maven.goal}" />
</exec>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org
|