You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2007/04/11 02:28:50 UTC

svn commit: r527350 - in /incubator/tuscany/java/sca/samples/crud-component: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/resources/ src/main/resources/META-INF/ src/test/ src/test/java/ src/test/resources/

Author: lresende
Date: Tue Apr 10 17:28:49 2007
New Revision: 527350

URL: http://svn.apache.org/viewvc?view=rev&rev=527350
Log:
Adding CRUD as a SCA Sample

Added:
    incubator/tuscany/java/sca/samples/crud-component/
    incubator/tuscany/java/sca/samples/crud-component/pom.xml   (with props)
    incubator/tuscany/java/sca/samples/crud-component/src/
    incubator/tuscany/java/sca/samples/crud-component/src/main/
    incubator/tuscany/java/sca/samples/crud-component/src/main/java/
    incubator/tuscany/java/sca/samples/crud-component/src/main/java/org/
      - copied from r527180, incubator/tuscany/java/sca/modules/host-embedded/src/test/java/org/
    incubator/tuscany/java/sca/samples/crud-component/src/main/resources/
    incubator/tuscany/java/sca/samples/crud-component/src/main/resources/META-INF/
      - copied from r527180, incubator/tuscany/java/sca/modules/host-embedded/src/test/resources/META-INF/
    incubator/tuscany/java/sca/samples/crud-component/src/main/resources/crud.composite
      - copied unchanged from r527180, incubator/tuscany/java/sca/modules/host-embedded/src/test/resources/crud.composite
    incubator/tuscany/java/sca/samples/crud-component/src/test/
    incubator/tuscany/java/sca/samples/crud-component/src/test/java/
    incubator/tuscany/java/sca/samples/crud-component/src/test/resources/

Added: incubator/tuscany/java/sca/samples/crud-component/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/crud-component/pom.xml?view=auto&rev=527350
==============================================================================
--- incubator/tuscany/java/sca/samples/crud-component/pom.xml (added)
+++ incubator/tuscany/java/sca/samples/crud-component/pom.xml Tue Apr 10 17:28:49 2007
@@ -0,0 +1,68 @@
+<?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-samples</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>tuscany-sample-crud</artifactId>
+    <name>Apache Tuscany CRUD Sample</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osoa</groupId>
+            <artifactId>sca-api</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>        
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+            <scope>runtime</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <mainClass>org.apache.tuscany..CalculatorClient</mainClass>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: incubator/tuscany/java/sca/samples/crud-component/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native



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