You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/07/03 20:19:47 UTC

svn commit: r960253 - in /tuscany/sca-java-2.x/trunk/modules/shell: ./ README pom.xml sca sca-test sca-test-remote

Author: antelder
Date: Sat Jul  3 18:19:47 2010
New Revision: 960253

URL: http://svn.apache.org/viewvc?rev=960253&view=rev
Log:
Start a new module for a interactive shell copied from the new shell launcher sample

Added:
    tuscany/sca-java-2.x/trunk/modules/shell/   (props changed)
      - copied from r960156, tuscany/sca-java-2.x/trunk/samples/launcher-shell/
Removed:
    tuscany/sca-java-2.x/trunk/modules/shell/README
    tuscany/sca-java-2.x/trunk/modules/shell/sca
    tuscany/sca-java-2.x/trunk/modules/shell/sca-test
    tuscany/sca-java-2.x/trunk/modules/shell/sca-test-remote
Modified:
    tuscany/sca-java-2.x/trunk/modules/shell/pom.xml

Propchange: tuscany/sca-java-2.x/trunk/modules/shell/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Jul  3 18:19:47 2010
@@ -0,0 +1,20 @@
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+derby.log
+maven.log
+maven-eclipse.xml
+build.xml
+build-dependency.xml
+velocity.log*
+junit*.properties
+surefire*.properties
+.project
+.classpath
+.settings
+.deployables
+.wtpmodules
+.externalToolBuilders

Modified: tuscany/sca-java-2.x/trunk/modules/shell/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/shell/pom.xml?rev=960253&r1=960156&r2=960253&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/shell/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/modules/shell/pom.xml Sat Jul  3 18:19:47 2010
@@ -1,76 +1,43 @@
 <?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.    
+ * 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</artifactId>
+        <artifactId>tuscany-modules</artifactId>
         <version>2.0-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
+        <relativePath>../pom.xml</relativePath>
     </parent>
-    <artifactId>sample-launcher-shell</artifactId>
-    <name>Apache Tuscany SCA Sample Launcher Shell</name>
+
+    <artifactId>tuscany-shell</artifactId>
+    <name>Apache Tuscany SCA Shell</name>
 
     <dependencies>
+ 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-feature-api</artifactId>
-            <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>  
-        
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-feature-core</artifactId>
-            <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
-        </dependency> 
-        
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-feature-webservice</artifactId>
-            <type>pom</type>
+            <artifactId>tuscany-domain-node</artifactId>
             <version>2.0-SNAPSHOT</version>
         </dependency>
         
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-feature-ejava</artifactId>
-            <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-                
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.8.1</version>
-            <scope>test</scope>
-        </dependency>
-
     </dependencies>
 
-    <build>
-       <finalName>${artifactId}</finalName>
-
-       <plugins>
-         
-       </plugins>
-    </build>
 </project>