PR: MPTEST-31

handle JVM args correctly in test:match


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2004-06-07 12:22:57 +00:00
parent 699a2c06e4
commit 653c58178d
3 changed files with 8 additions and 5 deletions

View File

@ -322,10 +322,10 @@
<j:forEach var="someEnv" items="${listOfEnv}">
<env key="${someEnv}" value="${context.getVariable(someEnv)}"/>
</j:forEach>
<maven:pluginVar var="jvmargs" plugin="maven-test-plugin" property="maven.junit.jvmargs" />
<j:if test="${!empty(jvmArgs)}">
<jvmarg line="${jvmargs}"/>
</j:if>
<u:tokenize var="listOfJvmArgs" delim=" ">${maven.junit.jvmargs}</u:tokenize>
<j:forEach var="somejvmarg" items="${listOfJvmArgs}">
<jvmarg value="${somejvmarg}"/>
</j:forEach>
<formatter type="xml"/>
<formatter type="${maven.junit.format}" usefile="${maven.junit.usefile}"/>

View File

@ -23,7 +23,7 @@
<pomVersion>3</pomVersion>
<id>maven-test-plugin</id>
<name>Maven Test Plug-in</name>
<currentVersion>1.6.1</currentVersion>
<currentVersion>1.7-SNAPSHOT</currentVersion>
<description>Run JUnit tests. Requires Maven 1.0 RC2.</description>
<shortDescription>Run JUnit tests</shortDescription>
<url>http://maven.apache.org/reference/plugins/test/</url>

View File

@ -24,6 +24,9 @@
<author email="dion@multitask.com.au">dIon Gillard</author>
</properties>
<body>
<release version="1.7-SNAPSHOT" date="in CVS">
<action dev="brett" type="fix" issue="MPTEST-31">handle JVM args correctly in test:match</action>
</release>
<release version="1.6.1" date="2004-05-19">
<action dev="brett" type="fix">only add xml-apis to classpath when forking to avoid classloader issues</action>
</release>