From 8ae95d6e100b095d57502be4247803451a16d97e Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 10 Feb 2011 08:40:56 +0000 Subject: Copy all trunk samples to contrib git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1069274 13f79535-47bb-0310-9956-ffa450edef68 --- .../helloworld-recursive-ws/README | 7 ++ .../helloworld-recursive-ws/pom.xml | 82 ++++++++++++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 28 ++++++++ .../src/main/resources/helloworld-ws.composite | 33 +++++++++ .../helloworld-recursive/README | 6 ++ .../helloworld-recursive/pom.xml | 76 ++++++++++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 26 +++++++ .../main/resources/helloworld-recursive.composite | 30 ++++++++ .../learning-more/implementation-composite/pom.xml | 44 ++++++++++++ 9 files changed, 332 insertions(+) create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/README create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/pom.xml create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/helloworld-ws.composite create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/README create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/pom.xml create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/helloworld-recursive.composite create mode 100644 sca-java-2.x/contrib/samples/learning-more/implementation-composite/pom.xml (limited to 'sca-java-2.x/contrib/samples/learning-more/implementation-composite') diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/README b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/README new file mode 100644 index 0000000000..58422d84cf --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/README @@ -0,0 +1,7 @@ +Hello implementation.composite helloworld-ws-contribution Sample +============================================================= +This sample demonstrates nested composition using implementation.composite and +binding.ws + +See http://tuscany.apache.org/documentation-2x/20-beta-samples-documentation.html +for more information diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/pom.xml b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/pom.xml new file mode 100644 index 0000000000..5b59323ee9 --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/pom.xml @@ -0,0 +1,82 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-samples + 2.0-SNAPSHOT + ../../../pom.xml + + + zip + sample-implementation-composite-helloworld-ws-contribution + Apache Tuscany SCA Sample implemenation.composite Helloworld WS Contribution + + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + provided + + + org.apache.tuscany.sca + sample-helloworld-contribution + 2.0-SNAPSHOT + provided + + + junit + junit + 4.8.1 + test + + + + + ${project.artifactId} + + + + + org.apache.tuscany.maven.plugins + maven-zip-plugin + alpha2 + true + + + + + org.apache.tuscany.maven.plugins + maven-tuscany-plugin + 2.0-SNAPSHOT + + + + ../helloworld-recursive/target/sample-implementation-composite-helloworld-contribution.zip + ../../../getting-started/helloworld-contribution/target/helloworld-contribution.jar + + + + + + + diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..ffc35bb553 --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,28 @@ + + + + + + + + + + diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/helloworld-ws.composite b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/helloworld-ws.composite new file mode 100644 index 0000000000..719754224d --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive-ws/src/main/resources/helloworld-ws.composite @@ -0,0 +1,33 @@ + + + + + + + + + + + + diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/README b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/README new file mode 100644 index 0000000000..1ad09620f3 --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/README @@ -0,0 +1,6 @@ +Hello implementation.composite helloworld-contribution Sample +============================================================= +This sample demonstrates nested composition using implementation.composite + +See http://tuscany.apache.org/documentation-2x/20-beta-samples-documentation.html +for more information \ No newline at end of file diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/pom.xml b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/pom.xml new file mode 100644 index 0000000000..164d31f300 --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/pom.xml @@ -0,0 +1,76 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-samples + 2.0-SNAPSHOT + ../../../pom.xml + + + zip + sample-implementation-composite-helloworld-contribution + Apache Tuscany SCA Sample implementation.composite Helloworld Contribution + + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + provided + + + junit + junit + 4.8.1 + test + + + + + ${project.artifactId} + + + + + + org.apache.tuscany.maven.plugins + maven-zip-plugin + alpha2 + true + + + + + org.apache.tuscany.maven.plugins + maven-tuscany-plugin + 2.0-SNAPSHOT + + + + ../../../getting-started/helloworld-contribution/target/helloworld-contribution.jar + + + + + + + diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..15d9304d05 --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/helloworld-recursive.composite b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/helloworld-recursive.composite new file mode 100644 index 0000000000..1094fea85e --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/helloworld-recursive/src/main/resources/helloworld-recursive.composite @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/sca-java-2.x/contrib/samples/learning-more/implementation-composite/pom.xml b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/pom.xml new file mode 100644 index 0000000000..baad81945e --- /dev/null +++ b/sca-java-2.x/contrib/samples/learning-more/implementation-composite/pom.xml @@ -0,0 +1,44 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-samples-learning-more + 2.0-SNAPSHOT + ../pom.xml + + tuscany-samples-implementation-composite + pom + Apache Tuscany SCA Implementation Composite Samples + + + + default + + true + + + helloworld-recursive + helloworld-recursive-ws + + + + -- cgit v1.2.3