You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by vm...@apache.org on 2003/05/28 11:36:20 UTC

cvs commit: maven/src/plugins-build/cactus plugin.properties plugin.jelly

vmassol     2003/05/28 02:36:20

  Modified:    src/plugins-build/cactus/xdocs properties.xml
               src/plugins-build/cactus plugin.properties plugin.jelly
  Log:
  Added maven.cactus.printsummary property (same meaning as the printsummary attribute of the Ant junit task).
  
  Revision  Changes    Path
  1.9       +13 -2     maven/src/plugins-build/cactus/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/cactus/xdocs/properties.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- properties.xml	23 May 2003 21:05:56 -0000	1.8
  +++ properties.xml	28 May 2003 09:36:20 -0000	1.9
  @@ -123,8 +123,19 @@
               </p>
             </td>
           </tr>
  -
  -			<!--
  +        <tr>
  +          <td>maven.cactus.printsummary</td>
  +          <td>Yes</td>
  +          <td>
  +            <p>
  +              How summary information on test should be printed to the console. This 
  +              property has the same meaning as the <code>printsummary</code> attribute
  +              of the JUnit Ant task. Default value is
  +              <code>maven.cactus.printsummary = withOutAndErr</code>.
  +            </p>
  +          </td>
  +        </tr>
  +<!--
           <tr>
             <td>cactus.runner</td>
             <td>Yes</td>
  
  
  
  1.10      +5 -1      maven/src/plugins-build/cactus/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/cactus/plugin.properties,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- plugin.properties	23 May 2003 21:05:56 -0000	1.9
  +++ plugin.properties	28 May 2003 09:36:20 -0000	1.10
  @@ -32,7 +32,7 @@
   cactus.port = 8080
   
   # Decides whether the test result will be printed to the console or
  -# not. Default is true
  +# not. Default is false
   cactus.junit.usefile = false
   
   # Location of junit test reports for the Cactus tests
  @@ -43,6 +43,10 @@
   
   # Shall we stop the build in case of test errors?
   cactus.halt.on.error = true
  +
  +# How summary information on test should be printed (see the
  +# "printsummary" attribute of the JUnit Ant task.
  +maven.cactus.printsummary = withOutAndErr 
   
   # -------------------------------------------------------------------
   # Container-related properties
  
  
  
  1.16      +2 -1      maven/src/plugins-build/cactus/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/cactus/plugin.jelly,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- plugin.jelly	24 May 2003 11:44:23 -0000	1.15
  +++ plugin.jelly	28 May 2003 09:36:20 -0000	1.16
  @@ -187,7 +187,8 @@
   
       <cactus warfile="${maven.build.dir}/${pom.artifactId}-cactus.war" 
           fork="yes" errorproperty="cactustests.error" 
  -        failureproperty="cactustests.failure">
  +        failureproperty="cactustests.failure"
  +        printsummary="${maven.cactus.printsummary}">
         <ant:classpath>
           <ant:pathelement path="${maven.build.dest}"/>
           <ant:pathelement location="${cactus.target.classes.dir}"/>
  
  
  

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