[jboss-cvs] JBossAS SVN: r82323 - trunk/build.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Dec 16 15:25:29 EST 2008
Author: pgier
Date: 2008-12-16 15:25:29 -0500 (Tue, 16 Dec 2008)
New Revision: 82323
Modified:
trunk/build/build.xml
Log:
Small echo cleanup.
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2008-12-16 18:21:22 UTC (rev 82322)
+++ trunk/build/build.xml 2008-12-16 20:25:29 UTC (rev 82323)
@@ -1019,7 +1019,6 @@
<attribute name="resultproperty" default="maven.result" />
<element name="args" implicit="true" optional="true" />
<sequential>
- <echo message="Calling mvn command located in ${maven.home}" />
<java classname="org.codehaus.classworlds.Launcher" fork="true"
dir="@{basedir}" resultproperty="@{resultproperty}">
<jvmarg value="-Xmx512m"/>
@@ -1052,7 +1051,6 @@
<target name="createthirdparty" unless="inhibit.downloads"
depends="init, check.inhibit.downloads, set.proxy">
- <property name="maven.home" location="${basedir}/../tools/maven"/>
<property name="thirdparty.maven.opts" value=""/>
<maven basedir="${basedir}/../thirdparty"
@@ -1071,9 +1069,9 @@
</target>
<!-- Call maven to build the mavenized modules -->
- <target name="maven-install" description="Run the install goal against the maven build">
+ <target name="maven-install" description="Run the install goal against the maven build"
+ depends="maven-init">
- <property name="maven.home" value="${basedir}/../tools/maven"/>
<property name="maven.install.opts" value="-Pintegrated-build"/>
<maven basedir="${basedir}/.."
@@ -1092,9 +1090,9 @@
</target>
<!-- Call maven to clean the mavenized modules -->
- <target name="maven-clean" description="Run the clean goal against the maven build.">
+ <target name="maven-clean" description="Run the clean goal against the maven build."
+ depends="maven-init">
- <property name="maven.home" value="${basedir}/../tools/maven"/>
<property name="maven.clean.opts" value="-Pintegrated-build "/>
<maven basedir="${basedir}/.."
More information about the jboss-cvs-commits
mailing list