Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master 23f1c2e54 -> c0572c1ce


Add Automatic-Module-Name metadata

Addresses TAMAYA-331


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

Branch: refs/heads/master
Commit: c0572c1ce3d6b3a4fde816b18e5b9c87492161dd
Parents: 23f1c2e
Author: Aaron Coburn <[email protected]>
Authored: Mon Mar 5 16:54:28 2018 -0500
Committer: Aaron Coburn <[email protected]>
Committed: Mon Mar 5 16:54:28 2018 -0500

----------------------------------------------------------------------
 modules/events/bnd.bnd                  | 1 +
 modules/features/bnd.bnd                | 3 ++-
 modules/filter/bnd.bnd                  | 1 +
 modules/formats/base/bnd.bnd            | 1 +
 modules/formats/json/bnd.bnd            | 1 +
 modules/formats/yaml/bnd.bnd            | 1 +
 modules/functions/bnd.bnd               | 3 ++-
 modules/injection/cdi/bnd.bnd           | 1 +
 modules/injection/injection-api/bnd.bnd | 1 +
 modules/injection/standalone/bnd.bnd    | 1 +
 modules/jndi/bnd.bnd                    | 1 +
 modules/microprofile/bnd.bnd            | 1 +
 modules/mutable-config/bnd.bnd          | 1 +
 modules/optional/bnd.bnd                | 1 +
 modules/osgi/common/bnd.bnd             | 1 +
 modules/osgi/gogo-shell/bnd.bnd         | 1 +
 modules/osgi/injection/bnd.bnd          | 1 +
 modules/osgi/karaf-shell/bnd.bnd        | 3 ++-
 modules/osgi/updater/bnd.bnd            | 1 +
 modules/resolver/bnd.bnd                | 1 +
 modules/resources/bnd.bnd               | 1 +
 modules/spring/bnd.bnd                  | 1 +
 22 files changed, 25 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/events/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/events/bnd.bnd b/modules/events/bnd.bnd
index 1b9859a..c431c8d 100644
--- a/modules/events/bnd.bnd
+++ b/modules/events/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.events
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Events
 Bundle-SymbolicName: org.apache.tamaya.events

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/features/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/features/bnd.bnd b/modules/features/bnd.bnd
index 78bbccd..c46d6ef 100644
--- a/modules/features/bnd.bnd
+++ b/modules/features/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.features
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Features
 Bundle-SymbolicName: org.apache.tamaya.features
@@ -20,4 +21,4 @@ Bundle-Vendor: Apache Software Foundation
 Bundle-ContactAddress: [email protected]
 Bundle-DocURL: http://tamaya.apache.org
 Export-Package: \
-       org.apache.tamaya.features
\ No newline at end of file
+       org.apache.tamaya.features

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/filter/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/filter/bnd.bnd b/modules/filter/bnd.bnd
index 006f58e..a8bbb0d 100644
--- a/modules/filter/bnd.bnd
+++ b/modules/filter/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.filter
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Filter
 Bundle-SymbolicName: org.apache.tamaya.filter

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/formats/base/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/formats/base/bnd.bnd b/modules/formats/base/bnd.bnd
index cbca609..84b86a2 100644
--- a/modules/formats/base/bnd.bnd
+++ b/modules/formats/base/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.formats
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Formats
 Bundle-SymbolicName: org.apache.tamaya.formats

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/formats/json/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/formats/json/bnd.bnd b/modules/formats/json/bnd.bnd
index 3e0af5f..49ed5fc 100644
--- a/modules/formats/json/bnd.bnd
+++ b/modules/formats/json/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.formats.json
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Formats JSON
 Bundle-SymbolicName: org.apache.tamaya.formats.json

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/formats/yaml/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/formats/yaml/bnd.bnd b/modules/formats/yaml/bnd.bnd
index b173e56..ad4cc29 100644
--- a/modules/formats/yaml/bnd.bnd
+++ b/modules/formats/yaml/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.formats.yaml
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Formats YAML
 Bundle-SymbolicName: org.apache.tamaya.formats.yaml

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/functions/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/functions/bnd.bnd b/modules/functions/bnd.bnd
index 71ff223..5e8da05 100644
--- a/modules/functions/bnd.bnd
+++ b/modules/functions/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.functions
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Functions
 Bundle-SymbolicName: org.apache.tamaya.functions
@@ -23,4 +24,4 @@ Export-Package: \
        org.apache.tamaya.functions
 Import-Package: \
        org.apache.tamaya,\
-       org.apache.tamaya.spi
\ No newline at end of file
+       org.apache.tamaya.spi

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/injection/cdi/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/injection/cdi/bnd.bnd b/modules/injection/cdi/bnd.bnd
index ec5b895..2c0203c 100644
--- a/modules/injection/cdi/bnd.bnd
+++ b/modules/injection/cdi/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.cdi
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Injection CDI
 Bundle-SymbolicName: org.apache.tamaya.cdi

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/injection/injection-api/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/injection/injection-api/bnd.bnd 
b/modules/injection/injection-api/bnd.bnd
index aefb755..a6173aa 100644
--- a/modules/injection/injection-api/bnd.bnd
+++ b/modules/injection/injection-api/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.inject.api
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Injection API
 Bundle-SymbolicName: org.apache.tamaya.inject.api

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/injection/standalone/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/injection/standalone/bnd.bnd 
b/modules/injection/standalone/bnd.bnd
index ae2e8cb..5090a3a 100644
--- a/modules/injection/standalone/bnd.bnd
+++ b/modules/injection/standalone/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.inject
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Injection SE
 Bundle-SymbolicName: org.apache.tamaya.inject-se

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/jndi/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/jndi/bnd.bnd b/modules/jndi/bnd.bnd
index 12c280e..61bc550 100644
--- a/modules/jndi/bnd.bnd
+++ b/modules/jndi/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.jndi
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - JNDI-Config
 Bundle-SymbolicName: org.apache.tamaya.jndi

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/microprofile/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/microprofile/bnd.bnd b/modules/microprofile/bnd.bnd
index c66c4ab..fb1111c 100644
--- a/modules/microprofile/bnd.bnd
+++ b/modules/microprofile/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.microprofile
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Microprofile
 Bundle-SymbolicName: org.apache.tamaya.microprofile

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/mutable-config/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/mutable-config/bnd.bnd b/modules/mutable-config/bnd.bnd
index 6c70db1..a0b4708 100644
--- a/modules/mutable-config/bnd.bnd
+++ b/modules/mutable-config/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.mutableconfig
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Mutable Configuration
 Bundle-SymbolicName: org.apache.tamaya.mutableconfig

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/optional/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/optional/bnd.bnd b/modules/optional/bnd.bnd
index 2e0feb1..502177a 100644
--- a/modules/optional/bnd.bnd
+++ b/modules/optional/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.optional
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Optional Tamaya
 Bundle-SymbolicName: org.apache.tamaya.optional

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/osgi/common/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/osgi/common/bnd.bnd b/modules/osgi/common/bnd.bnd
index e937379..e75d2b1 100644
--- a/modules/osgi/common/bnd.bnd
+++ b/modules/osgi/common/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.osgi
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - OSGI ConfigurationPlugin
 Bundle-SymbolicName: org.apache.tamaya.osgi

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/osgi/gogo-shell/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/osgi/gogo-shell/bnd.bnd b/modules/osgi/gogo-shell/bnd.bnd
index 67e951a..a7da417 100644
--- a/modules/osgi/gogo-shell/bnd.bnd
+++ b/modules/osgi/gogo-shell/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.gogo.shell
 Bundle-Activator: org.apache.tamaya.gogo.shell.Activator
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Felix Shell Commands

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/osgi/injection/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/osgi/injection/bnd.bnd b/modules/osgi/injection/bnd.bnd
index 69e9637..b861df6 100644
--- a/modules/osgi/injection/bnd.bnd
+++ b/modules/osgi/injection/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.osgi.injection
 Bundle-Activator: org.apache.tamaya.osgi.injection.Activator
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - OSGI Configuration Injection

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/osgi/karaf-shell/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/osgi/karaf-shell/bnd.bnd b/modules/osgi/karaf-shell/bnd.bnd
index 3bed7ca..9068225 100644
--- a/modules/osgi/karaf-shell/bnd.bnd
+++ b/modules/osgi/karaf-shell/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.karaf.shell
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Karaf Shell Commands
 Bundle-SymbolicName: org.apache.tamaya.osgi.karaf.shell
@@ -35,4 +36,4 @@ Import-Package: \
     org.apache.karaf.shell.api.action,\
     org.apache.karaf.shell.api.action.lifecycle,\
     org.apache.karaf.shell.support.completers
-Karaf-Commands: org.apache.tamaya.karaf.shell
\ No newline at end of file
+Karaf-Commands: org.apache.tamaya.karaf.shell

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/osgi/updater/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/osgi/updater/bnd.bnd b/modules/osgi/updater/bnd.bnd
index 416db00..52865f4 100644
--- a/modules/osgi/updater/bnd.bnd
+++ b/modules/osgi/updater/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.osgi.updater
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - OSGI Updater
 Bundle-SymbolicName: org.apache.tamaya.osgi.updater

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/resolver/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/resolver/bnd.bnd b/modules/resolver/bnd.bnd
index 96eb0f8..948bf64 100644
--- a/modules/resolver/bnd.bnd
+++ b/modules/resolver/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.resolver
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Resolvers
 Bundle-SymbolicName: org.apache.tamaya.resolver

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/resources/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/resources/bnd.bnd b/modules/resources/bnd.bnd
index c7b6e26..f843b3b 100644
--- a/modules/resources/bnd.bnd
+++ b/modules/resources/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.resource
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Resources
 Bundle-SymbolicName: org.apache.tamaya.resource

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/c0572c1c/modules/spring/bnd.bnd
----------------------------------------------------------------------
diff --git a/modules/spring/bnd.bnd b/modules/spring/bnd.bnd
index e651ff1..91856f1 100644
--- a/modules/spring/bnd.bnd
+++ b/modules/spring/bnd.bnd
@@ -9,6 +9,7 @@
 javac.source: 1.8
 javac.target: 1.8
 
+Automatic-Module-Name: org.apache.tamaya.spring
 Bundle-Version: ${version}.${tstamp}
 Bundle-Name: Apache Tamaya - Spring Integration
 Bundle-SymbolicName: org.apache.tamaya.spring

Reply via email to