Print

Print


Author: [log in to unmask]
Date: Tue May 31 17:18:53 2016
New Revision: 4384

Log:
increment plugin version; include prop setting so cache dir is passed to ITs; remove unneeded profile setting

Modified:
    java/trunk/integration-tests/pom.xml

Modified: java/trunk/integration-tests/pom.xml
 =============================================================================
--- java/trunk/integration-tests/pom.xml	(original)
+++ java/trunk/integration-tests/pom.xml	Tue May 31 17:18:53 2016
@@ -48,7 +48,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-failsafe-plugin</artifactId>
-                <version>2.19</version>
+                <version>2.19.1</version>
                 <configuration>
                     <argLine>-server -Xmx2g -XX:MaxPermSize=512m -Djava.util.logging.config.class=org.hps.logging.config.TestLoggingConfig</argLine>
                     <forkCount>1</forkCount>
@@ -56,6 +56,9 @@
                     <includes>
                         <include>org/hps/test/it/*Test.java</include>
                     </includes>
+                    <systemPropertyVariables>
+                        <org.lcsim.cacheDir>${org.lcsim.cacheDir}</org.lcsim.cacheDir>
+                    </systemPropertyVariables>
                 </configuration>
                 <executions>
                     <execution>
@@ -68,24 +71,4 @@
             </plugin>
         </plugins>
     </build>
-     <profiles>
-        <!-- This profile deactivates all tests in this module. -->
-        <profile>
-            <id>no-integration-tests</id>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <configuration>
-                            <skipTests>true</skipTests>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile> 
-    </profiles>    
 </project>