kaz 02/04/29 13:03:56
Modified: src/templates/build build-maven.xml
Log:
Fixed a glitch that was pointed out by glenn. The 'maven:compile'
target, if invoked directly, didn't actually do anything cuz the POM
properties weren't loaded due to the missing 'depends' attribute.
Revision Changes Path
1.40 +1 -0 jakarta-turbine-maven/src/templates/build/build-maven.xml
Index: build-maven.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/templates/build/build-maven.xml,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- build-maven.xml 29 Apr 2002 14:22:52 -0000 1.39
+++ build-maven.xml 29 Apr 2002 20:03:56 -0000 1.40
@@ -186,6 +186,7 @@
<target
name="compile"
if="sourcesPresent"
+ depends="local-init"
description="o Compile project source code">
<antcall target="do-compile"/>
</target>