You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2004/06/07 14:22:57 UTC

cvs commit: maven-plugins/test/xdocs changes.xml

brett       2004/06/07 05:22:57

  Modified:    test     plugin.jelly project.xml
               test/xdocs changes.xml
  Log:
  PR: MPTEST-31
  handle JVM args correctly in test:match
  
  Revision  Changes    Path
  1.32      +4 -4      maven-plugins/test/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/plugin.jelly,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- plugin.jelly	19 May 2004 12:31:35 -0000	1.31
  +++ plugin.jelly	7 Jun 2004 12:22:57 -0000	1.32
  @@ -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}"/>
   
  
  
  
  1.31      +1 -1      maven-plugins/test/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/project.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- project.xml	19 May 2004 12:53:26 -0000	1.30
  +++ project.xml	7 Jun 2004 12:22:57 -0000	1.31
  @@ -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>
  
  
  
  1.19      +3 -0      maven-plugins/test/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/xdocs/changes.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- changes.xml	19 May 2004 12:53:26 -0000	1.18
  +++ changes.xml	7 Jun 2004 12:22:57 -0000	1.19
  @@ -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>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org