You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/10/08 18:41:59 UTC

cvs commit: maven-plugins/simian/xdocs properties.xml changes.xml

dion        2003/10/08 09:41:59

  Modified:    simian   project.xml plugin.properties plugin.jelly
               simian/xdocs properties.xml changes.xml
  Log:
  Apply MAVEN-890
  
  Revision  Changes    Path
  1.14      +1 -1      maven-plugins/simian/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/simian/project.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- project.xml	29 Sep 2003 05:19:13 -0000	1.13
  +++ project.xml	8 Oct 2003 16:41:59 -0000	1.14
  @@ -4,7 +4,7 @@
     <extend>../project.xml</extend>
     <id>maven-simian-plugin</id>
     <name>Maven Simian Plugin</name>
  -  <currentVersion>1.2</currentVersion>
  +  <currentVersion>1.3-SNAPSHOT</currentVersion>
     <description>Simian Plugin for Maven</description>
     <shortDescription>Simian Plugin for Maven</shortDescription>
     <url>http://maven.apache.org/reference/plugins/simian/</url>
  
  
  
  1.2       +1 -0      maven-plugins/simian/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/maven-plugins/simian/plugin.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.properties	10 Jul 2003 07:36:58 -0000	1.1
  +++ plugin.properties	8 Oct 2003 16:41:59 -0000	1.2
  @@ -1,4 +1,5 @@
   maven.simian.linecount = 10
  +maven.simian.includetests = true
   maven.simian.failonduplication = false
   maven.simian.ignorestrings = false
   maven.simian.ignorestringcase = false
  
  
  
  1.6       +7 -3      maven-plugins/simian/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/simian/plugin.jelly,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- plugin.jelly	19 Aug 2003 05:08:18 -0000	1.5
  +++ plugin.jelly	8 Oct 2003 16:41:59 -0000	1.6
  @@ -67,9 +67,13 @@
             </j:if>
           </j:forEach>
   
  -      </ant:fileset> 
  -      <j:if test="${unitTestSourcesPresent == 'true'}">
  -        <ant:fileset dir="${pom.build.unitTestSourceDirectory}" includes="**/*.java"/>
  +      </ant:fileset>
  +
  +      <j:set var="includeTests" value="${maven.simian.includetests}"/>
  +      <j:if test="${includeTests == 'true'}">
  +        <j:if test="${unitTestSourcesPresent == 'true'}">
  +          <ant:fileset dir="${pom.build.unitTestSourceDirectory}" includes="**/*.java"/>
  +        </j:if>
         </j:if>
   
         <!-- debut ajout momo -->
  
  
  
  1.2       +8 -0      maven-plugins/simian/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/simian/xdocs/properties.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- properties.xml	10 Jul 2003 07:37:00 -0000	1.1
  +++ properties.xml	8 Oct 2003 16:41:59 -0000	1.2
  @@ -19,6 +19,14 @@
             </td>
           </tr>
           <tr>
  +          <td>maven.simian.includeTests</td>
  +          <td>true</td>
  +          <td>
  +            Specifies whether simian should process the unit test files if
  +            present.
  +          </td>
  +        </tr>
  +        <tr>
             <td>maven.simian.failonduplication</td>
             <td>Yes (default = false)</td>
             <td>
  
  
  
  1.10      +6 -0      maven-plugins/simian/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/simian/xdocs/changes.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- changes.xml	29 Sep 2003 06:27:58 -0000	1.9
  +++ changes.xml	8 Oct 2003 16:41:59 -0000	1.10
  @@ -8,6 +8,12 @@
   
     <body>
       
  +    <release version="1.3" date="in CVS">
  +      <action dev="dion" type="update">
  +        Apply MAVEN-890. Allow unit tests to be skipped.
  +      </action>
  +    </release>
  +    
       <release version="1.2" date="2003-09-29">
         <action dev="dion" type="update">update to commons-jelly-20030902.160215</action>
         <action dev="dion" type="fix">
  
  
  

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