Author: [email protected]
Date: Thu Apr 14 12:46:18 2011
New Revision: 966

Log:
[AMDATUCASSANDRA-7] Moved platform integration tests to separate module

Added:
   trunk/integration-tests/pom.xml
Modified:
   trunk/integration-tests/test-platform/pom.xml
   
trunk/integration-tests/test-platform/src/test/java/org/amdatu/test/integration/base/IntegrationTestBase.java

Added: trunk/integration-tests/pom.xml
==============================================================================
--- (empty file)
+++ trunk/integration-tests/pom.xml     Thu Apr 14 12:46:18 2011
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+  <parent>
+    <groupId>org.amdatu</groupId>
+    <artifactId>amdatu</artifactId>
+    <version>0.2.0-SNAPSHOT</version>
+  </parent>
+  <groupId>org.amdatu</groupId>
+  <artifactId>org.amdatu.test.integration</artifactId>
+  <version>0.2.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Integration Tests</name>
+  <description>This module hosts integration test related modules</description>
+
+  <modules>
+    <module>test-platform</module>
+  </modules>
+
+</project>
\ No newline at end of file

Modified: trunk/integration-tests/test-platform/pom.xml
==============================================================================
--- trunk/integration-tests/test-platform/pom.xml       (original)
+++ trunk/integration-tests/test-platform/pom.xml       Thu Apr 14 12:46:18 2011
@@ -3,14 +3,14 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.amdatu</groupId>
-    <artifactId>amdatu</artifactId>
+    <artifactId>org.amdatu.test.integration</artifactId>
     <version>0.2.0-SNAPSHOT</version>
   </parent>
-  <groupId>org.amdatu.test</groupId>
-  <artifactId>integration</artifactId>
+  <groupId>org.amdatu.test.integration</groupId>
+  <artifactId>test-platform</artifactId>
   <packaging>bundle</packaging>
-  <name>Amdatu Integration Tests</name>
-  <description>This bundle contains integration tests for the 
project</description>
+  <name>Amdatu Platform integration tests</name>
+  <description>This bundle contains integration tests for the 
platform</description>
 
   <properties>
     <pax.exam.version>1.2.3</pax.exam.version>

Modified: 
trunk/integration-tests/test-platform/src/test/java/org/amdatu/test/integration/base/IntegrationTestBase.java
==============================================================================
--- 
trunk/integration-tests/test-platform/src/test/java/org/amdatu/test/integration/base/IntegrationTestBase.java
       (original)
+++ 
trunk/integration-tests/test-platform/src/test/java/org/amdatu/test/integration/base/IntegrationTestBase.java
       Thu Apr 14 12:46:18 2011
@@ -285,7 +285,7 @@
     protected File integrationTestJarFile() {
         FileFilter ff = new FileFilter() {
             public boolean accept(File pathname) {
-                return 
pathname.getName().startsWith("org.amdatu.test.integration-")
+                return 
pathname.getName().startsWith("org.amdatu.test.integration")
                 && pathname.getName().endsWith(".jar")
                 && !pathname.getName().endsWith("-javadoc.jar")
                 && !pathname.getName().endsWith("-sources.jar");
_______________________________________________
Amdatu-commits mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-commits

Reply via email to