You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2013/05/20 23:22:46 UTC

svn commit: r1484600 - in /incubator/jspwiki/branches/MVN3_BRANCH: mvn_cheat-sheet.txt pom.xml

Author: juanpablo
Date: Mon May 20 21:22:45 2013
New Revision: 1484600

URL: http://svn.apache.org/r1484600
Log:
integration tests are launched only if -Pintegration-tests is given (JSPWIKI-770)

added clirr-maven-plugin configuration

Modified:
    incubator/jspwiki/branches/MVN3_BRANCH/mvn_cheat-sheet.txt
    incubator/jspwiki/branches/MVN3_BRANCH/pom.xml

Modified: incubator/jspwiki/branches/MVN3_BRANCH/mvn_cheat-sheet.txt
URL: http://svn.apache.org/viewvc/incubator/jspwiki/branches/MVN3_BRANCH/mvn_cheat-sheet.txt?rev=1484600&r1=1484599&r2=1484600&view=diff
==============================================================================
--- incubator/jspwiki/branches/MVN3_BRANCH/mvn_cheat-sheet.txt (original)
+++ incubator/jspwiki/branches/MVN3_BRANCH/mvn_cheat-sheet.txt Mon May 20 21:22:45 2013
@@ -13,7 +13,7 @@ mvn tomcat7:run                         
 mvn clean deploy -Prelease -Dgpg.passphrase=<passphrase> : deploys generated artifact to a repository
                                                            If -Dgpg.passphrase is not given, it'll be asked
                                        
-Selenium execution: go to jspwiki-it-tests module and execute mvn clean test
+mvn clean install -Pintegration-tests                    : Selenium tests execution
 
 Reports specific
 ****************

Modified: incubator/jspwiki/branches/MVN3_BRANCH/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jspwiki/branches/MVN3_BRANCH/pom.xml?rev=1484600&r1=1484599&r2=1484600&view=diff
==============================================================================
--- incubator/jspwiki/branches/MVN3_BRANCH/pom.xml (original)
+++ incubator/jspwiki/branches/MVN3_BRANCH/pom.xml Mon May 20 21:22:45 2013
@@ -45,7 +45,7 @@
   
   <modules>
     <module>jspwiki-war</module>
-    <!-- <module>jspwiki-it-tests</module> --><!-- don't launch the IT tests as part of the main build -->
+    <module>jspwiki-it-tests</module><!-- IT tests are launched only if -Pintegration-tests is given -->
   </modules>
   
   <dependencyManagement> <!-- defines what configuration is going to be used if, and only if, the dependency is used -->
@@ -475,6 +475,12 @@
    
         <plugin>
           <groupId>org.codehaus.mojo</groupId>
+          <artifactId>clirr-maven-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
+   
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
           <artifactId>cobertura-maven-plugin</artifactId>
           <version>2.5.2</version>
           <configuration>