You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jb...@apache.org on 2007/02/21 21:49:20 UTC

svn commit: r510197 - in /incubator/tuscany/java/sca/integration-test: pom.xml propertyTest/pom.xml specTest/pom.xml

Author: jboynes
Date: Wed Feb 21 12:49:19 2007
New Revision: 510197

URL: http://svn.apache.org/viewvc?view=rev&rev=510197
Log:
update integration-test module to new parent/kernel version

Modified:
    incubator/tuscany/java/sca/integration-test/pom.xml
    incubator/tuscany/java/sca/integration-test/propertyTest/pom.xml
    incubator/tuscany/java/sca/integration-test/specTest/pom.xml

Modified: incubator/tuscany/java/sca/integration-test/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/integration-test/pom.xml?view=diff&rev=510197&r1=510196&r2=510197
==============================================================================
--- incubator/tuscany/java/sca/integration-test/pom.xml (original)
+++ incubator/tuscany/java/sca/integration-test/pom.xml Wed Feb 21 12:49:19 2007
@@ -19,14 +19,14 @@
 -->
 <project>
     <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>parent</artifactId>
-        <version>1.0-incubator-SNAPSHOT</version>
+        <groupId>org.apache.tuscany</groupId>
+        <artifactId>sca</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.tuscany.sca</groupId>
     <artifactId>integration-test</artifactId>
-    <version>1.0-incubator-SNAPSHOT</version>
+    <version>1.0-alpha-incubating-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>Apache Tuscany Integration Tests</name>
     <description>Integration tests for SCA.</description>
@@ -37,23 +37,48 @@
     </modules>
 
     <properties>
-        <kernelVersion>1.0-incubator-SNAPSHOT</kernelVersion>
+        <!-- version the SCA API that we implement -->
+        <scaSpecVersion>1.0</scaSpecVersion>
+
+        <!-- version the Apache Tuscany kernel that the runtimes work with -->
+        <kernelVersion>1.0-alpha-incubating-SNAPSHOT</kernelVersion>
     </properties>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.osoa</groupId>
-                <artifactId>sca-api-r1.0</artifactId>
-                <version>1.0-incubator-SNAPSHOT</version>
-                <scope>compile</scope>
-            </dependency>
-            <dependency>
-                <groupId>junit</groupId>
-                <artifactId>junit</artifactId>
-                <version>3.8.1</version>
-                <scope>test</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
+    <dependencies>
+        <!-- org.osoa.sca API -->
+        <dependency>
+            <groupId>org.osoa</groupId>
+            <artifactId>sca-api-r${scaSpecVersion}</artifactId>
+            <version>1.0-alpha-incubating-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <defaultGoal>verify</defaultGoal>
+
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.tuscany</groupId>
+                    <artifactId>tuscany-itest-plugin</artifactId>
+                    <version>${kernelVersion}</version>
+                    <executions>
+                        <execution>
+                            <goals>
+                                <goal>test</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
 </project>

Modified: incubator/tuscany/java/sca/integration-test/propertyTest/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/integration-test/propertyTest/pom.xml?view=diff&rev=510197&r1=510196&r2=510197
==============================================================================
--- incubator/tuscany/java/sca/integration-test/propertyTest/pom.xml (original)
+++ incubator/tuscany/java/sca/integration-test/propertyTest/pom.xml Wed Feb 21 12:49:19 2007
@@ -21,37 +21,19 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>integration-test</artifactId>
-        <version>1.0-incubator-SNAPSHOT</version>
+        <version>1.0-alpha-incubating-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tuscany.sca.integration-test</groupId>
     <artifactId>propertyTest</artifactId>
     <packaging>jar</packaging>
     <name>Integration Test Suite for SCA Properties</name>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.osoa</groupId>
-            <artifactId>sca-api-r1.0</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-        </dependency>
-    </dependencies>
-
     <build>
-        <defaultGoal>verify</defaultGoal>
         <plugins>
             <plugin>
-                <groupId>org.apache.tuscany.sca</groupId>
+                <groupId>org.apache.tuscany</groupId>
                 <artifactId>tuscany-itest-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>test</goal>
-                        </goals>
-                    </execution>
-                </executions>
             </plugin>
         </plugins>
     </build>

Modified: incubator/tuscany/java/sca/integration-test/specTest/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/integration-test/specTest/pom.xml?view=diff&rev=510197&r1=510196&r2=510197
==============================================================================
--- incubator/tuscany/java/sca/integration-test/specTest/pom.xml (original)
+++ incubator/tuscany/java/sca/integration-test/specTest/pom.xml Wed Feb 21 12:49:19 2007
@@ -21,36 +21,19 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>integration-test</artifactId>
-        <version>1.0-incubator-SNAPSHOT</version>
+        <version>1.0-alpha-incubating-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tuscany.sca.integration-test</groupId>
     <artifactId>specTest</artifactId>
     <packaging>jar</packaging>
     <name>Integration Test Suite for SCA Spec APIs</name>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.osoa</groupId>
-            <artifactId>sca-api-r1.0</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-        </dependency>
-    </dependencies>
-
     <build>
         <plugins>
             <plugin>
-                <groupId>org.apache.tuscany.sca</groupId>
+                <groupId>org.apache.tuscany</groupId>
                 <artifactId>tuscany-itest-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>test</goal>
-                        </goals>
-                    </execution>
-                </executions>
             </plugin>
         </plugins>
     </build>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org