You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2017/11/14 09:25:50 UTC

[09/12] incubator-tamaya git commit: TAMAYA-318 Moved spi-support as API base implementation package to remove code duplicates.

TAMAYA-318 Moved spi-support as API base implementation package to remove code duplicates.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/878b2363
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/878b2363
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/878b2363

Branch: refs/heads/master
Commit: 878b2363cfc3477f27503de6459e44feea4b3d86
Parents: 62c38d6
Author: Anatole Tresch <an...@apache.org>
Authored: Mon Nov 13 16:56:28 2017 +0100
Committer: Anatole Tresch <an...@apache.org>
Committed: Mon Nov 13 16:56:28 2017 +0100

----------------------------------------------------------------------
 code/core/bnd.bnd        |  6 +++---
 code/spi-support/bnd.bnd | 26 ++++++++++++++++++++++++++
 2 files changed, 29 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/878b2363/code/core/bnd.bnd
----------------------------------------------------------------------
diff --git a/code/core/bnd.bnd b/code/core/bnd.bnd
index 5419c17..b611eb1 100644
--- a/code/core/bnd.bnd
+++ b/code/core/bnd.bnd
@@ -21,12 +21,12 @@ Bundle-ContactAddress: dev-tamaya@incubator.apache.org
 Bundle-DocURL: http://tamaya.apache.org
 Bundle-Activator: org.apache.tamaya.core.OSGIActivator
 Export-Package: \
-	org.apache.tamaya.core,\
-	org.apache.tamaya.core.propertysource,\
-	org.apache.tamaya.core.provider
+	org.apache.tamaya.core
 Import-Package: \
 	org.apache.tamaya,\
 	org.apache.tamaya.spi,\
+	org.apache.tamaya.spisupport,\
+	org.apache.tamaya.spisupport.propertysource,\
 	org.osgi.framework,\
 	javax.annotation
 Private-Package: \

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/878b2363/code/spi-support/bnd.bnd
----------------------------------------------------------------------
diff --git a/code/spi-support/bnd.bnd b/code/spi-support/bnd.bnd
new file mode 100644
index 0000000..876ca2e
--- /dev/null
+++ b/code/spi-support/bnd.bnd
@@ -0,0 +1,26 @@
+-buildpath: \
+	osgi.annotation; version=6.0.0,\
+	osgi.core; version=6.0,\
+	osgi.cmpn; version=6.0
+
+-testpath: \
+	${junit}
+
+javac.source: 1.8
+javac.target: 1.8
+
+Bundle-Version: ${version}.${tstamp}
+Bundle-Name: Apache Tamaya - SPI Support
+Bundle-SymbolicName: org.apache.tamaya.spisupport
+Bundle-Description: Apacha Tamaya Config - SPI Support
+Bundle-Category: Implementation
+Bundle-Copyright: (C) Apache Foundation
+Bundle-License: Apache Licence version 2
+Bundle-Vendor: Apache Software Foundation
+Bundle-ContactAddress: dev-tamaya@incubator.apache.org
+Bundle-DocURL: http://tamaya.apache.org
+Export-Package: \
+	org.apache.tamaya.spisupport,org.apache.tamaya.spisupport.propertysource
+Import-Package: \
+    org.apache.tamaya,\
+    org.apache.tamaya.spi