From a72fcfa3adf5be93bcf62e8ed26c08d10939b364 Mon Sep 17 00:00:00 2001 From: lresende Date: Thu, 11 Sep 2008 04:10:13 +0000 Subject: Branch before trunk cleanup git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@694106 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/SpringExplicitHelloWorld-context.xml | 39 ++++++++++++++++++++++ .../sca/SpringExplicitReference-context.xml | 33 ++++++++++++++++++ .../sca/SpringHelloWorld-Imported-context.xml | 31 +++++++++++++++++ .../META-INF/sca/SpringHelloWorld-context.xml | 31 +++++++++++++++++ .../sca/SpringImplicitReference-context.xml | 34 +++++++++++++++++++ .../sca/SpringImportHelloWorld-context.xml | 29 ++++++++++++++++ .../META-INF/sca/testReferenceContext.xml | 33 ++++++++++++++++++ .../resources/META-INF/sca/testServiceContext.xml | 31 +++++++++++++++++ .../SpringHelloWorld-Imported-context.xml | 31 +++++++++++++++++ .../helloworld/SpringExplicitHelloWorld.composite | 33 ++++++++++++++++++ .../helloworld/SpringExplicitReference.composite | 32 ++++++++++++++++++ .../itests/helloworld/SpringHelloWorld.composite | 32 ++++++++++++++++++ .../helloworld/SpringImplicitReference.composite | 39 ++++++++++++++++++++++ .../helloworld/SpringImportHelloWorld.composite | 32 ++++++++++++++++++ .../itests/helloworld/SpringSCAProperty.composite | 39 ++++++++++++++++++++++ .../src/test/resources/spring/META-INF/MANIFEST.MF | 3 ++ .../META-INF/spring/SpringSCAProperty-context.xml | 34 +++++++++++++++++++ .../src/test/resources/test.xml | 27 +++++++++++++++ 18 files changed, 563 insertions(+) create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitHelloWorld-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitReference-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-Imported-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImplicitReference-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImportHelloWorld-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testReferenceContext.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testServiceContext.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/SpringHelloWorld-Imported-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitHelloWorld.composite create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitReference.composite create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringHelloWorld.composite create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImplicitReference.composite create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImportHelloWorld.composite create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringSCAProperty.composite create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/MANIFEST.MF create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/spring/SpringSCAProperty-context.xml create mode 100644 branches/trunk-20080910/modules/implementation-spring/src/test/resources/test.xml (limited to 'branches/trunk-20080910/modules/implementation-spring/src/test/resources') diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitHelloWorld-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitHelloWorld-context.xml new file mode 100644 index 0000000000..7c358ac01c --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitHelloWorld-context.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitReference-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitReference-context.xml new file mode 100644 index 0000000000..38e90b41fa --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringExplicitReference-context.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-Imported-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-Imported-context.xml new file mode 100644 index 0000000000..18ce21805c --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-Imported-context.xml @@ -0,0 +1,31 @@ + + + + + + + + + \ No newline at end of file diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-context.xml new file mode 100644 index 0000000000..18ce21805c --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringHelloWorld-context.xml @@ -0,0 +1,31 @@ + + + + + + + + + \ No newline at end of file diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImplicitReference-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImplicitReference-context.xml new file mode 100644 index 0000000000..e6b69e8cad --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImplicitReference-context.xml @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImportHelloWorld-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImportHelloWorld-context.xml new file mode 100644 index 0000000000..8e18a56cca --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/SpringImportHelloWorld-context.xml @@ -0,0 +1,29 @@ + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testReferenceContext.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testReferenceContext.xml new file mode 100644 index 0000000000..fdbbeeced2 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testReferenceContext.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testServiceContext.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testServiceContext.xml new file mode 100644 index 0000000000..6b3f1f9890 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/META-INF/sca/testServiceContext.xml @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/SpringHelloWorld-Imported-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/SpringHelloWorld-Imported-context.xml new file mode 100644 index 0000000000..18ce21805c --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/SpringHelloWorld-Imported-context.xml @@ -0,0 +1,31 @@ + + + + + + + + + \ No newline at end of file diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitHelloWorld.composite b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitHelloWorld.composite new file mode 100644 index 0000000000..79f4041fe6 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitHelloWorld.composite @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitReference.composite b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitReference.composite new file mode 100644 index 0000000000..87353b69ea --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringExplicitReference.composite @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringHelloWorld.composite b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringHelloWorld.composite new file mode 100644 index 0000000000..ebb693d243 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringHelloWorld.composite @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImplicitReference.composite b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImplicitReference.composite new file mode 100644 index 0000000000..9f51277d22 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImplicitReference.composite @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImportHelloWorld.composite b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImportHelloWorld.composite new file mode 100644 index 0000000000..95dd9131eb --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringImportHelloWorld.composite @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringSCAProperty.composite b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringSCAProperty.composite new file mode 100644 index 0000000000..af1b3be0a5 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/org/apache/tuscany/sca/implementation/spring/itests/helloworld/SpringSCAProperty.composite @@ -0,0 +1,39 @@ + + + + + + + + + + + + + Hello + + + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/MANIFEST.MF b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..950dbeba4c --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Spring-Context: META-INF/spring/SpringSCAProperty-context.xml + diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/spring/SpringSCAProperty-context.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/spring/SpringSCAProperty-context.xml new file mode 100644 index 0000000000..f1ee21686d --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/spring/META-INF/spring/SpringSCAProperty-context.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/branches/trunk-20080910/modules/implementation-spring/src/test/resources/test.xml b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/test.xml new file mode 100644 index 0000000000..f2d684f766 --- /dev/null +++ b/branches/trunk-20080910/modules/implementation-spring/src/test/resources/test.xml @@ -0,0 +1,27 @@ + + + + + + + -- cgit v1.2.3