o run the tests and make the default run-full-maven

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@497196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-01-17 21:56:45 +00:00
parent e2e634d16c
commit 3989426df8
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
<project default="all" basedir=".">
<project default="run-full-maven" basedir=".">
<description>
The first time you build Maven from source, you have to build Maven without Maven.
@ -336,12 +336,12 @@ load ${bootstrapDir}/target/classes
<target name="all" depends="clean-bootstrap,init,extract-assembly"/>
<target name="run-full-maven" depends="init,extract-assembly"
<target name="run-full-maven" depends="all"
description="runs the full extracted Maven, now with tests">
<property name="maven.goals" value="clean install"/>
<java classname="org.codehaus.classworlds.Launcher" fork="true" failonerror="true">
<classpath>
<fileset dir="${maven.home}/core/boot" includes="classworlds-*.jar"/>
<fileset dir="${maven.home}/core/boot" includes="plexus-classworlds-*.jar"/>
</classpath>
<sysproperty key="classworlds.conf" value="${maven.home}/bin/m2.conf"/>
<sysproperty key="maven.home" value="${maven.home}"/>