You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ra...@apache.org on 2008/12/07 17:38:47 UTC

svn commit: r724155 - in /tuscany/branches/sca-java-1.4/itest: binding-sca-jms/client/pom.xml binding-sca-jms/pom.xml binding-sca-jms/service/pom.xml osgi-tuscany/ pom.xml promotion-interface-missmatch/

Author: ramkumar
Date: Sun Dec  7 08:38:47 2008
New Revision: 724155

URL: http://svn.apache.org/viewvc?rev=724155&view=rev
Log:
Fixes for junk modules

Removed:
    tuscany/branches/sca-java-1.4/itest/osgi-tuscany/
    tuscany/branches/sca-java-1.4/itest/promotion-interface-missmatch/
Modified:
    tuscany/branches/sca-java-1.4/itest/binding-sca-jms/client/pom.xml
    tuscany/branches/sca-java-1.4/itest/binding-sca-jms/pom.xml
    tuscany/branches/sca-java-1.4/itest/binding-sca-jms/service/pom.xml
    tuscany/branches/sca-java-1.4/itest/pom.xml

Modified: tuscany/branches/sca-java-1.4/itest/binding-sca-jms/client/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/binding-sca-jms/client/pom.xml?rev=724155&r1=724154&r2=724155&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/binding-sca-jms/client/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/binding-sca-jms/client/pom.xml Sun Dec  7 08:38:47 2008
@@ -1,63 +1,64 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    * Licensed to the Apache Software Foundation (ASF) under one
-    * or more contributor license agreements.  See the NOTICE file
-    * distributed with this work for additional information
-    * regarding copyright ownership.  The ASF licenses this file
-    * to you under the Apache License, Version 2.0 (the
-    * "License"); you may not use this file except in compliance
-    * with the License.  You may obtain a copy of the License at
-    * 
-    *   http://www.apache.org/licenses/LICENSE-2.0
-    * 
-    * Unless required by applicable law or agreed to in writing,
-    * software distributed under the License is distributed on an
-    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    * KIND, either express or implied.  See the License for the
-    * specific language governing permissions and limitations
-    * under the License.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>itest-binidng-sca-jms</artifactId>
-        <version>1.4</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>itest-binding-sca-jms-client</artifactId>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>1.4</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-sca-jms</artifactId>
-            <version>1.4</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.2</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-    
-    <build>
-        <finalName>${artifactId}</finalName>
-    </build>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * Licensed to the Apache Software Foundation (ASF) under one
+    * or more contributor license agreements.  See the NOTICE file
+    * distributed with this work for additional information
+    * regarding copyright ownership.  The ASF licenses this file
+    * to you under the Apache License, Version 2.0 (the
+    * "License"); you may not use this file except in compliance
+    * with the License.  You may obtain a copy of the License at
+    * 
+    *   http://www.apache.org/licenses/LICENSE-2.0
+    * 
+    * Unless required by applicable law or agreed to in writing,
+    * software distributed under the License is distributed on an
+    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    * KIND, either express or implied.  See the License for the
+    * specific language governing permissions and limitations
+    * under the License.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>itest-binidng-sca-jms</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-binding-sca-jms-client</artifactId>
+    <name>Apache Tuscany SCA iTest JMS SCA Binding Client</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-node-impl</artifactId>
+            <version>1.4</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-sca-jms</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.2</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Modified: tuscany/branches/sca-java-1.4/itest/binding-sca-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/binding-sca-jms/pom.xml?rev=724155&r1=724154&r2=724155&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/binding-sca-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/binding-sca-jms/pom.xml Sun Dec  7 08:38:47 2008
@@ -1,36 +1,36 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    * Licensed to the Apache Software Foundation (ASF) under one
-    * or more contributor license agreements.  See the NOTICE file
-    * distributed with this work for additional information
-    * regarding copyright ownership.  The ASF licenses this file
-    * to you under the Apache License, Version 2.0 (the
-    * "License"); you may not use this file except in compliance
-    * with the License.  You may obtain a copy of the License at
-    * 
-    *   http://www.apache.org/licenses/LICENSE-2.0
-    * 
-    * Unless required by applicable law or agreed to in writing,
-    * software distributed under the License is distributed on an
-    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    * KIND, either express or implied.  See the License for the
-    * specific language governing permissions and limitations
-    * under the License.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-itest</artifactId>
-        <version>1.4</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <artifactId>itest-binidng-sca-jms</artifactId>
-    <packaging>pom</packaging>
-    <name>Apache Tuscany SCA JMS SCA Binding Integration Tests</name>
-
-    <modules>
-       <module>service</module>
-       <module>client</module>
-    </modules>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * Licensed to the Apache Software Foundation (ASF) under one
+    * or more contributor license agreements.  See the NOTICE file
+    * distributed with this work for additional information
+    * regarding copyright ownership.  The ASF licenses this file
+    * to you under the Apache License, Version 2.0 (the
+    * "License"); you may not use this file except in compliance
+    * with the License.  You may obtain a copy of the License at
+    * 
+    *   http://www.apache.org/licenses/LICENSE-2.0
+    * 
+    * Unless required by applicable law or agreed to in writing,
+    * software distributed under the License is distributed on an
+    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    * KIND, either express or implied.  See the License for the
+    * specific language governing permissions and limitations
+    * under the License.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-itest</artifactId>
+        <version>1.4</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-binidng-sca-jms</artifactId>
+    <packaging>pom</packaging>
+    <name>Apache Tuscany SCA iTest JMS SCA Binding</name>
+
+    <modules>
+       <module>service</module>
+       <module>client</module>
+    </modules>
+</project>

Modified: tuscany/branches/sca-java-1.4/itest/binding-sca-jms/service/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/binding-sca-jms/service/pom.xml?rev=724155&r1=724154&r2=724155&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/binding-sca-jms/service/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/binding-sca-jms/service/pom.xml Sun Dec  7 08:38:47 2008
@@ -1,63 +1,64 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    * Licensed to the Apache Software Foundation (ASF) under one
-    * or more contributor license agreements.  See the NOTICE file
-    * distributed with this work for additional information
-    * regarding copyright ownership.  The ASF licenses this file
-    * to you under the Apache License, Version 2.0 (the
-    * "License"); you may not use this file except in compliance
-    * with the License.  You may obtain a copy of the License at
-    * 
-    *   http://www.apache.org/licenses/LICENSE-2.0
-    * 
-    * Unless required by applicable law or agreed to in writing,
-    * software distributed under the License is distributed on an
-    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    * KIND, either express or implied.  See the License for the
-    * specific language governing permissions and limitations
-    * under the License.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>itest-binidng-sca-jms</artifactId>
-        <version>1.4</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>itest-binding-sca-jms-service</artifactId>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>1.4</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-sca-jms</artifactId>
-            <version>1.4</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.2</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-    
-    <build>
-        <finalName>${artifactId}</finalName>
-    </build>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * Licensed to the Apache Software Foundation (ASF) under one
+    * or more contributor license agreements.  See the NOTICE file
+    * distributed with this work for additional information
+    * regarding copyright ownership.  The ASF licenses this file
+    * to you under the Apache License, Version 2.0 (the
+    * "License"); you may not use this file except in compliance
+    * with the License.  You may obtain a copy of the License at
+    * 
+    *   http://www.apache.org/licenses/LICENSE-2.0
+    * 
+    * Unless required by applicable law or agreed to in writing,
+    * software distributed under the License is distributed on an
+    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    * KIND, either express or implied.  See the License for the
+    * specific language governing permissions and limitations
+    * under the License.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>itest-binidng-sca-jms</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-binding-sca-jms-service</artifactId>
+    <name>Apache Tuscany SCA iTest JMS SCA Binding Service</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-node-impl</artifactId>
+            <version>1.4</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-sca-jms</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.2</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Modified: tuscany/branches/sca-java-1.4/itest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/pom.xml?rev=724155&r1=724154&r2=724155&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/pom.xml Sun Dec  7 08:38:47 2008
@@ -58,6 +58,9 @@
                 <activeByDefault>true</activeByDefault>
             </activation>
             <modules>
+                <!-- 
+                <module>binding-sca-jms</module> 
+                -->
                 <module>bpel</module>
                 <module>builder</module>
                 <module>callablereferences</module>
@@ -73,10 +76,7 @@
                 <module>component-type</module>
                 <module>contribution</module>
                 <module>contribution-multiple</module>
-                <module>contribution-import-export</module>
-                <!-- 
-                <module>contribution-classloader</module> 
-                -->
+                <module>contribution-import-export</module>                
                 <module>conversations</module>
                 <module>corba</module>
                 <module>conversations-ws</module>