Print

Print


Author: [log in to unmask]
Date: Mon Nov  2 10:06:38 2015
New Revision: 3918

Log:
Make integration-tests module activated by a non-default profile.

Modified:
    java/trunk/pom.xml

Modified: java/trunk/pom.xml
 =============================================================================
--- java/trunk/pom.xml	(original)
+++ java/trunk/pom.xml	Mon Nov  2 10:06:38 2015
@@ -1,6 +1,6 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.hps</groupId>
     <artifactId>hps-modules</artifactId>
     <packaging>pom</packaging>
     <name>HPS Java Project</name>
@@ -11,7 +11,7 @@
         <artifactId>hps-parent</artifactId>
         <relativePath>parent/pom.xml</relativePath>
         <version>3.4.2-SNAPSHOT</version>
-    </parent>   
+    </parent>
     <scm>
         <url>svn://svn.freehep.org/hps/java/trunk/</url>
         <connection>scm:svn:svn://svn.freehep.org/hps/java/trunk/</connection>
@@ -43,7 +43,7 @@
                     <artifactId>maven-eclipse-plugin</artifactId>
                     <version>2.9</version>
                 </plugin>
-            </plugins>            
+            </plugins>
         </pluginManagement>
     </build>
     <reporting>
@@ -79,27 +79,6 @@
                     <forkCount>1</forkCount>
                 </configuration>
             </plugin>
-            <!--
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-changes-plugin</artifactId>
-                <version>2.9</version>
-                <configuration>
-                    <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix
-                        Version,Created</columnNames>
-                    <sortColumnNames>Type,Key DESC</sortColumnNames>
-                    <statusIds>Resolved, Closed</statusIds>
-                    <maxEntries>9999</maxEntries>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <reports>
-                            <report>jira-report</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-            -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
@@ -136,8 +115,7 @@
         <module>ecal-event-display</module>
         <module>ecal-readout-sim</module>
         <module>ecal-recon</module>
-        <module>evio</module>        
-        <module>integration-tests</module>
+        <module>evio</module>
         <module>job</module>
         <module>logging</module>
         <module>monitoring-util</module>
@@ -153,4 +131,15 @@
         <module>users</module>
         <module>util</module>
     </modules>
+    <profiles>
+        <profile>
+            <id>integration-tests</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <modules>
+                <module>integration-tests</module>
+            </modules>
+        </profile>
+    </profiles>
 </project>