From b5c0d648cf147d3709eb78d98011f38e07aee723 Mon Sep 17 00:00:00 2001 From: lresende Date: Fri, 13 Nov 2009 01:25:44 +0000 Subject: Moving 1.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835694 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/osgi/Customer.mf | 13 +++++++++++++ .../src/main/resources/osgi/Customer2.mf | 13 +++++++++++++ .../src/main/resources/osgi/Retailer.mf | 10 ++++++++++ .../src/main/resources/osgi/RetailerJar.mf | 1 + .../src/main/resources/osgi/Shipper.mf | 10 ++++++++++ .../src/main/resources/osgi/SupplyChain.mf | 13 +++++++++++++ .../src/main/resources/osgi/Warehouse.mf | 10 ++++++++++ 7 files changed, 70 insertions(+) create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer.mf create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer2.mf create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Retailer.mf create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/RetailerJar.mf create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Shipper.mf create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/SupplyChain.mf create mode 100644 sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Warehouse.mf (limited to 'sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi') diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer.mf new file mode 100644 index 0000000000..644b207e70 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer.mf @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Customer +Bundle-SymbolicName: supplychain.customer.Customer +Bundle-Version: 2.0.0 +Bundle-Localization: plugin +Import-Package: org.osgi.framework, + supplychain.retailer;version="[2.0.0,3.0.0)", + supplychain.shipper;version="[2.0.0,3.0.0)", + supplychain.warehouse;version="[2.0.0,3.0.0)" +Export-Package: supplychain.customer;version="2.0.0" +Bundle-Activator: supplychain.customer.OSGiCustomerImpl + diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer2.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer2.mf new file mode 100644 index 0000000000..e649870356 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Customer2.mf @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Customer +Bundle-SymbolicName: supplychain.customer.Customer +Bundle-Version: 2.0.0 +Bundle-Localization: plugin +Import-Package: org.osgi.framework, + supplychain.retailer, + supplychain.shipper, + supplychain.warehouse +Export-Package: supplychain.customer;version="2.0.0" +Bundle-Activator: supplychain.customer.OSGiCustomerImpl + diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Retailer.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Retailer.mf new file mode 100644 index 0000000000..8e8e33ecd1 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Retailer.mf @@ -0,0 +1,10 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Retailer +Bundle-SymbolicName: supplychain.retailer.Retailer +Bundle-Version: 2.0.0 +Bundle-Localization: plugin +Import-Package: org.osgi.framework, + supplychain.warehouse;version="[2.0.0,3.0.0)" +Export-Package: supplychain.retailer;version="2.0.0" +Bundle-Activator: supplychain.retailer.OSGiRetailerImpl diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/RetailerJar.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/RetailerJar.mf new file mode 100644 index 0000000000..2f4b56835b --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/RetailerJar.mf @@ -0,0 +1 @@ +Manifest-Version: 1.0 diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Shipper.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Shipper.mf new file mode 100644 index 0000000000..5f4a8b94ec --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Shipper.mf @@ -0,0 +1,10 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Shipper +Bundle-SymbolicName: supplychain.shipper.Shipper +Bundle-Version: 2.0.0 +Bundle-Localization: plugin +Import-Package: org.osgi.framework, + supplychain.customer;version="[2.0.0,3.0.0)" +Export-Package: supplychain.shipper;version="2.0.0" +Bundle-Activator: supplychain.shipper.OSGiShipperImpl diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/SupplyChain.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/SupplyChain.mf new file mode 100644 index 0000000000..57d2ac9e4d --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/SupplyChain.mf @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: SupplyChain +Bundle-SymbolicName: supplychain.SupplyChain +Bundle-Version: 2.0.0 +Bundle-Localization: plugin +Import-Package: org.osgi.framework +Export-Package: supplychain.customer;version="2.0.0", + supplychain.retailer;version="2.0.0", + supplychain.warehouse;version="2.0.0", + supplychain.shipper;version="2.0.0" +Bundle-ClassPath: .,CustomerV2.jar,RetailerV2.jar,WarehouseV2.jar,ShipperV2.jar + diff --git a/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Warehouse.mf b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Warehouse.mf new file mode 100644 index 0000000000..2e1399bb3b --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.2/itest/osgi-contribution/contribution-classes-v2/src/main/resources/osgi/Warehouse.mf @@ -0,0 +1,10 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Warehouse +Bundle-SymbolicName: supplychain.warehouse.Warehouse +Bundle-Version: 2.0.0 +Bundle-Localization: plugin +Import-Package: org.osgi.framework, + supplychain.shipper;version="[2.0.0,3.0.0)" +Export-Package: supplychain.warehouse;version="2.0.0" +Bundle-Activator: supplychain.warehouse.OSGiWarehouseImpl -- cgit v1.2.3