From d67dcb9c027f8aeb197f288d7c8ae115d7fd9f25 Mon Sep 17 00:00:00 2001 From: antelder Date: Mon, 23 Mar 2009 09:35:27 +0000 Subject: Create 2.0-M2 release branch git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@757361 13f79535-47bb-0310-9956-ffa450edef68 --- .../calculator/dosgi/META-INF/MANIFEST.MF | 20 ++++++++ .../calculator/dosgi/bundle.componentType | 54 ++++++++++++++++++++++ .../calculator/dosgi/calculator.composite | 53 +++++++++++++++++++++ .../dosgi/operations/META-INF/MANIFEST.MF | 20 ++++++++ .../dosgi/operations/bundle.componentType | 47 +++++++++++++++++++ .../dosgi/operations/operations.composite | 43 +++++++++++++++++ 6 files changed, 237 insertions(+) create mode 100644 branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/META-INF/MANIFEST.MF create mode 100644 branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/bundle.componentType create mode 100644 branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/calculator.composite create mode 100644 branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/META-INF/MANIFEST.MF create mode 100644 branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/bundle.componentType create mode 100644 branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/operations.composite (limited to 'branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi') diff --git a/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/META-INF/MANIFEST.MF b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..41c1264364 --- /dev/null +++ b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/META-INF/MANIFEST.MF @@ -0,0 +1,20 @@ +Manifest-Version: 1.0 +Export-Package: calculator.dosgi;version="1.0.0", + calculator.dosgi.operations;version="1.0.0" +Bundle-Version: 1.0.0 +Bundle-Name: calculator.dosgi +Bundle-Activator: calculator.dosgi.CalculatorActivator +Bundle-ManifestVersion: 2 +Import-Package: calculator.dosgi.operations;version="1.0.0", + org.osgi.framework, + org.osgi.service.packageadmin, + org.osgi.util.tracker, + org.osgi.service.component;resolution:=optional +Bundle-SymbolicName: calculator.dosgi +Bundle-Vendor: The Apache Software Foundation +Bundle-ActivationPolicy: lazy +Eclipse-LazyStart: true +Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt +Bundle-DocURL: http://www.apache.org/ +Service-Component: OSGI-INF/calculator-component.xml + diff --git a/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/bundle.componentType b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/bundle.componentType new file mode 100644 index 0000000000..7860094626 --- /dev/null +++ b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/bundle.componentType @@ -0,0 +1,54 @@ + + + + + + + + + 1 + ABC + + + + + + 1 + ABC + + + + 1 + ABC + + + + 1 + ABC + + + + 1 + ABC + + + diff --git a/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/calculator.composite b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/calculator.composite new file mode 100644 index 0000000000..3c77086c45 --- /dev/null +++ b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/calculator.composite @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/META-INF/MANIFEST.MF b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..eb15e778b1 --- /dev/null +++ b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/META-INF/MANIFEST.MF @@ -0,0 +1,20 @@ +Manifest-Version: 1.0 +Export-Package: calculator.dosgi.operations;version="1.0.0" +Bundle-Version: 1.0.0 +Bundle-Name: calculator.dosgi.operations +Bundle-Activator: calculator.dosgi.operations.OperationsActivator +Bundle-ManifestVersion: 2 +Import-Package: calculator.dosgi.operations;version="1.0.0", + org.osgi.framework, + org.osgi.service.component;resolution:=optional +Bundle-SymbolicName: calculator.dosgi.operations +Bundle-Vendor: The Apache Software Foundation +Bundle-ActivationPolicy: lazy +Eclipse-LazyStart: true +Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt +Bundle-DocURL: http://www.apache.org/ +Service-Component: OSGI-INF/add-component.xml, + OSGI-INF/subtract-component.xml, + OSGI-INF/multiply-component.xml, + OSGI-INF/divide-component.xml + diff --git a/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/bundle.componentType b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/bundle.componentType new file mode 100644 index 0000000000..6f6f4bdce6 --- /dev/null +++ b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/bundle.componentType @@ -0,0 +1,47 @@ + + + + + + + + + 1 + ABC + + + + 1 + ABC + + + + 1 + ABC + + + + 1 + ABC + + + diff --git a/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/operations.composite b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/operations.composite new file mode 100644 index 0000000000..c9fb3818b8 --- /dev/null +++ b/branches/sca-java-2.0-M2/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/operations.composite @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3