You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2008/10/25 20:31:01 UTC

svn commit: r707885 - in /tuscany/branches/sca-equinox/tools: eclipse/ eclipse34/ java2wsdl/ pom.xml sdo/ sdo/java2wsdl/ sdo/java2wsdl/pom.xml sdo/pom.xml sdo/wsdl2java/ sdo/wsdl2java/pom.xml wsdl2java/

Author: jsdelfino
Date: Sat Oct 25 11:31:01 2008
New Revision: 707885

URL: http://svn.apache.org/viewvc?rev=707885&view=rev
Log:
Minor refactoring, renamed eclipse34 to eclipse, moved SDO tools under sdo.

Added:
    tuscany/branches/sca-equinox/tools/eclipse/
      - copied from r707879, tuscany/branches/sca-equinox/tools/eclipse34/
    tuscany/branches/sca-equinox/tools/sdo/
    tuscany/branches/sca-equinox/tools/sdo/java2wsdl/
      - copied from r707879, tuscany/branches/sca-equinox/tools/java2wsdl/
    tuscany/branches/sca-equinox/tools/sdo/pom.xml   (with props)
    tuscany/branches/sca-equinox/tools/sdo/wsdl2java/
      - copied from r707879, tuscany/branches/sca-equinox/tools/wsdl2java/
Removed:
    tuscany/branches/sca-equinox/tools/eclipse34/
    tuscany/branches/sca-equinox/tools/java2wsdl/
    tuscany/branches/sca-equinox/tools/wsdl2java/
Modified:
    tuscany/branches/sca-equinox/tools/pom.xml
    tuscany/branches/sca-equinox/tools/sdo/java2wsdl/pom.xml
    tuscany/branches/sca-equinox/tools/sdo/wsdl2java/pom.xml

Modified: tuscany/branches/sca-equinox/tools/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-equinox/tools/pom.xml?rev=707885&r1=707884&r2=707885&view=diff
==============================================================================
--- tuscany/branches/sca-equinox/tools/pom.xml (original)
+++ tuscany/branches/sca-equinox/tools/pom.xml Sat Oct 25 11:31:01 2008
@@ -36,10 +36,9 @@
                 <activeByDefault>true</activeByDefault>
             </activation>
             <modules>
-                <module>eclipse34</module>
-                <module>java2wsdl</module>
+                <module>eclipse</module>
                 <module>maven</module>
-                <module>wsdl2java</module>
+                <module>sdo</module>
             </modules>
         </profile>
     </profiles>

Modified: tuscany/branches/sca-equinox/tools/sdo/java2wsdl/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-equinox/tools/sdo/java2wsdl/pom.xml?rev=707885&r1=707879&r2=707885&view=diff
==============================================================================
--- tuscany/branches/sca-equinox/tools/sdo/java2wsdl/pom.xml (original)
+++ tuscany/branches/sca-equinox/tools/sdo/java2wsdl/pom.xml Sat Oct 25 11:31:01 2008
@@ -21,12 +21,13 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-sca-tools</artifactId>
+        <artifactId>tuscany-sca-sdo-tools</artifactId>
         <version>1.4-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-java2wsdl</artifactId>
     <name>Apache Tuscany SCA Java2WSDL Tool</name>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sdo</groupId>
@@ -39,26 +40,31 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
             <version>1.4-SNAPSHOT</version>
         </dependency>
+
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
             <version>1.4-SNAPSHOT</version>
         </dependency>
+
         <dependency>
             <groupId>javax.xml.stream</groupId>
             <artifactId>stax-api</artifactId>
             <version>1.0-2</version>
         </dependency>
+
         <dependency>
             <groupId>wsdl4j</groupId>
             <artifactId>wsdl4j</artifactId>
             <version>1.6.2</version>
         </dependency>
+
         <dependency>
             <groupId>org.apache.neethi</groupId>
             <artifactId>neethi</artifactId>
@@ -86,6 +92,7 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-codegen</artifactId>
@@ -97,11 +104,13 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>org.eclipse.emf</groupId>
             <artifactId>codegen</artifactId>
             <version>2.2.3</version>
         </dependency>
+
         <dependency>
             <groupId>org.eclipse.emf</groupId>
             <artifactId>codegen-ecore</artifactId>
@@ -115,6 +124,7 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
     <build>
         <plugins>
             <plugin>
@@ -136,6 +146,7 @@
                     </execution>
                 </executions>
             </plugin>
+
             <plugin>
                 <groupId>org.apache.tuscany.sdo</groupId>
                 <artifactId>tuscany-sdo-plugin</artifactId>
@@ -160,6 +171,7 @@
             </plugin>
         </plugins>
     </build>
+
     <repositories>
         <repository>
             <!-- temporarily using indiana state univ as eclipse site diesnt have 2.2.2 at the moment -->
@@ -171,4 +183,4 @@
             </snapshots>
         </repository>
     </repositories>
-</project>
\ No newline at end of file
+</project>

Added: tuscany/branches/sca-equinox/tools/sdo/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-equinox/tools/sdo/pom.xml?rev=707885&view=auto
==============================================================================
--- tuscany/branches/sca-equinox/tools/sdo/pom.xml (added)
+++ tuscany/branches/sca-equinox/tools/sdo/pom.xml Sat Oct 25 11:31:01 2008
@@ -0,0 +1,55 @@
+<?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-sca-tools</artifactId>
+        <version>1.4-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <packaging>pom</packaging>
+    <artifactId>tuscany-sca-sdo-tools</artifactId>
+    <name>Apache Tuscany SCA SDO Tools</name>
+
+    <profiles>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>java2wsdl</module>
+                <module>wsdl2java</module>
+            </modules>
+        </profile>
+    </profiles>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.2</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    
+</project>

Propchange: tuscany/branches/sca-equinox/tools/sdo/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tuscany/branches/sca-equinox/tools/sdo/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: tuscany/branches/sca-equinox/tools/sdo/wsdl2java/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-equinox/tools/sdo/wsdl2java/pom.xml?rev=707885&r1=707879&r2=707885&view=diff
==============================================================================
--- tuscany/branches/sca-equinox/tools/sdo/wsdl2java/pom.xml (original)
+++ tuscany/branches/sca-equinox/tools/sdo/wsdl2java/pom.xml Sat Oct 25 11:31:01 2008
@@ -21,12 +21,13 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-sca-tools</artifactId>
+        <artifactId>tuscany-sca-sdo-tools</artifactId>
         <version>1.4-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-wsdl2java</artifactId>
     <name>Apache Tuscany SCA WSDL2Java Tool</name>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
@@ -34,6 +35,7 @@
             <version>1.4-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
+
         <dependency>
             <groupId>org.apache.tuscany.sdo</groupId>
             <artifactId>tuscany-sdo-impl</artifactId>
@@ -49,21 +51,25 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>org.apache.tuscany.sdo</groupId>
             <artifactId>tuscany-sdo-tools</artifactId>
             <version>1.1.1</version>
         </dependency>
+
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-xjc</artifactId>
             <version>2.1.7</version>
         </dependency>
+
         <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
             <version>2.1</version>
         </dependency>
+
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-impl</artifactId>
@@ -76,16 +82,19 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>javax.xml.stream</groupId>
             <artifactId>stax-api</artifactId>
             <version>1.0-2</version>
         </dependency>
+
         <dependency>
             <groupId>wsdl4j</groupId>
             <artifactId>wsdl4j</artifactId>
             <version>1.6.2</version>
         </dependency>
+
         <dependency>
             <groupId>org.apache.neethi</groupId>
             <artifactId>neethi</artifactId>
@@ -113,6 +122,7 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-codegen</artifactId>
@@ -124,11 +134,13 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
         <dependency>
             <groupId>org.eclipse.emf</groupId>
             <artifactId>codegen</artifactId>
             <version>2.2.3</version>
         </dependency>
+
         <dependency>
             <groupId>org.eclipse.emf</groupId>
             <artifactId>codegen-ecore</artifactId>
@@ -142,6 +154,7 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
     <build>
         <plugins>
             <plugin>
@@ -163,6 +176,7 @@
                     </execution>
                 </executions>
             </plugin>
+
             <plugin>
                 <groupId>org.apache.tuscany.sdo</groupId>
                 <artifactId>tuscany-sdo-plugin</artifactId>
@@ -187,6 +201,7 @@
             </plugin>
         </plugins>
     </build>
+
     <repositories>
         <repository>
             <snapshots>
@@ -207,4 +222,4 @@
             </snapshots>
         </repository>
     </repositories>
-</project>
\ No newline at end of file
+</project>