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/10/01 09:43:45 UTC

svn commit: r1003416 - in /tuscany/sca-java-2.x/trunk/samples: extending-tuscany/ extending-tuscany/implementation-sample/ extending-tuscany/pom.xml learning-more/implementation-extension/ learning-more/pom.xml pom.xml

Author: antelder
Date: Fri Oct  1 07:43:44 2010
New Revision: 1003416

URL: http://svn.apache.org/viewvc?rev=1003416&view=rev
Log:
Create a new sample folder 'extending-tuscany' and move the implementation sample there

Added:
    tuscany/sca-java-2.x/trunk/samples/extending-tuscany/
    tuscany/sca-java-2.x/trunk/samples/extending-tuscany/implementation-sample/
      - copied from r1003413, tuscany/sca-java-2.x/trunk/samples/learning-more/implementation-extension/
    tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml   (with props)
Removed:
    tuscany/sca-java-2.x/trunk/samples/learning-more/implementation-extension/
Modified:
    tuscany/sca-java-2.x/trunk/samples/learning-more/pom.xml
    tuscany/sca-java-2.x/trunk/samples/pom.xml

Added: tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml?rev=1003416&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml Fri Oct  1 07:43:44 2010
@@ -0,0 +1,45 @@
+<?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>2.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <groupId>org.apache.tuscany.sca</groupId>
+    <artifactId>tuscany-samples-extending-tuscany</artifactId>
+    <version>2.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Apache Tuscany SCA Extending Tuscany Samples</name>
+
+    <profiles>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>implementation-sample</module>
+            </modules>
+        </profile>
+    </profiles>    
+</project>

Propchange: tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tuscany/sca-java-2.x/trunk/samples/extending-tuscany/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: tuscany/sca-java-2.x/trunk/samples/learning-more/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/learning-more/pom.xml?rev=1003416&r1=1003415&r2=1003416&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/learning-more/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/learning-more/pom.xml Fri Oct  1 07:43:44 2010
@@ -46,7 +46,6 @@
                 <module>binding-jsonrpc</module>
                 <module>implementation-bpel</module>
                 <module>implementation-composite</module>
-                <module>implementation-extension</module>
                 <module>implementation-java</module>
                 <module>implementation-script</module>
                 <module>implementation-spring</module>

Modified: tuscany/sca-java-2.x/trunk/samples/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/pom.xml?rev=1003416&r1=1003415&r2=1003416&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/pom.xml Fri Oct  1 07:43:44 2010
@@ -36,16 +36,7 @@
                 <module>running-tuscany</module>
                 <module>learning-more</module>
                 <module>applications</module>
-
-<!-- *********
-    IF YOU ADD ANY SAMPLES THEN ALSO ADD THEM TO 
-        distribution\all\src\main\components\bin-samples.xml
-    OR THEY WONT GET IN RELEASES
-     ********* -->
-<!-- *********
-    ALSO SAMPLES SHOULD HAVE A TEST IN itest/distribution TO 
-    ENSURE THAT THEY WORK PROPERLY OUT OF A DISTRIBUTION
-     ********* -->
+                <module>extending-tuscany</module>
             </modules>
 
           <build>