[jboss-cvs] JBossAS SVN: r82290 - trunk/build.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Dec 15 17:50:06 EST 2008
Author: pgier
Date: 2008-12-15 17:50:06 -0500 (Mon, 15 Dec 2008)
New Revision: 82290
Modified:
trunk/build/build.xml
Log:
Change order of calls to maven and thirdparty.
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2008-12-15 22:17:20 UTC (rev 82289)
+++ trunk/build/build.xml 2008-12-15 22:50:06 UTC (rev 82290)
@@ -1003,7 +1003,7 @@
<target name="all" depends="createthirdparty, modules-all, install"
description="Executes all modules and builds everything."/>
- <target name="most" depends="createthirdparty, maven-install, modules-most, install"
+ <target name="most" depends="maven-install, createthirdparty, modules-most, install"
description="Executes all modules and builds most everything."/>
<target name="release" depends="most" />
@@ -1071,7 +1071,7 @@
</target>
<!-- Call maven to build the mavenized modules -->
- <target name="maven-install" depends="init">
+ <target name="maven-install" description="Run the install goal against the maven build">
<property name="maven.home" value="${basedir}/../tools/maven"/>
<property name="maven.install.opts" value="-Pintegrated-build"/>
@@ -1092,7 +1092,7 @@
</target>
<!-- Call maven to clean the mavenized modules -->
- <target name="maven-clean" depends="init">
+ <target name="maven-clean" description="Run the clean goal against the maven build.">
<property name="maven.home" value="${basedir}/../tools/maven"/>
<property name="maven.clean.opts" value="-Pintegrated-build "/>
More information about the jboss-cvs-commits
mailing list