mirror of https://github.com/apache/maven.git
o trying to add in integration test run, but the paths are being picked up incorrectly.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463980 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
270fdef090
commit
6d356e7c69
15
build.xml
15
build.xml
|
@ -249,6 +249,21 @@ need different versions of modello. -->
|
|||
</chmod>
|
||||
</target>
|
||||
|
||||
<target name="mits"
|
||||
description="Run the Maven integration tests."
|
||||
depends="init">
|
||||
<java fork="true"
|
||||
dir="maven-core-it-new"
|
||||
classname="org.apache.maven.cli.MavenCli"
|
||||
failonerror="true">
|
||||
<classpath refid="maven.classpath"/>
|
||||
<sysproperty key="maven.test.skip" value="true"/>
|
||||
<arg value="-e"/>
|
||||
<arg value="clean"/>
|
||||
<arg value="test"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<target name="run-full-maven" depends="init,extract-assembly"
|
||||
description="runs the full extracted Maven, now with tests">
|
||||
<property name="maven.goals" value="clean install"/>
|
||||
|
|
Loading…
Reference in New Issue