You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by st...@apache.org on 2017/09/28 21:41:13 UTC

[1/2] commons-rdf git commit: Adds Automatic-Module-Name to the bundle manifests

Repository: commons-rdf
Updated Branches:
  refs/heads/master bf9f91327 -> 58fcfd723


Adds Automatic-Module-Name to the bundle manifests

Resolves COMMONSRDF-64


Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/0a182bcf
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/0a182bcf
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/0a182bcf

Branch: refs/heads/master
Commit: 0a182bcf026adf761d8520c52869542cf449c82f
Parents: 482b831
Author: Aaron Coburn <ac...@amherst.edu>
Authored: Wed Sep 13 07:57:17 2017 -0400
Committer: Aaron Coburn <ac...@amherst.edu>
Committed: Wed Sep 13 07:57:17 2017 -0400

----------------------------------------------------------------------
 api/pom.xml         | 11 +++++++++++
 jena/pom.xml        |  1 +
 jsonld-java/pom.xml |  1 +
 rdf4j/pom.xml       |  1 +
 simple/pom.xml      |  1 +
 5 files changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/0a182bcf/api/pom.xml
----------------------------------------------------------------------
diff --git a/api/pom.xml b/api/pom.xml
index b1b47e5..43434b1 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -52,6 +52,17 @@
                     </execution>
                 </executions>
             </plugin>
+
+            <plugin>
+              <groupId>org.apache.felix</groupId>
+              <artifactId>maven-bundle-plugin</artifactId>
+              <configuration>
+                <instructions>
+                  <Bundle-SymbolicName>org.apache.commons.rdf.api</Bundle-SymbolicName>
+                  <Automatic-Module-Name>org.apache.commons.rdf.api</Automatic-Module-Name>
+                </instructions>
+              </configuration>
+            </plugin>
         </plugins>
     </build>
 

http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/0a182bcf/jena/pom.xml
----------------------------------------------------------------------
diff --git a/jena/pom.xml b/jena/pom.xml
index c4d349e..2a80010 100644
--- a/jena/pom.xml
+++ b/jena/pom.xml
@@ -101,6 +101,7 @@
         <configuration>
           <instructions>
             <Bundle-SymbolicName>org.apache.commons.rdf.jena</Bundle-SymbolicName>
+            <Automatic-Module-Name>org.apache.commons.rdf.jena</Automatic-Module-Name>
             <Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional</Require-Capability>
             <Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.apache.commons.rdf.api.RDF</Provide-Capability>
           </instructions>

http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/0a182bcf/jsonld-java/pom.xml
----------------------------------------------------------------------
diff --git a/jsonld-java/pom.xml b/jsonld-java/pom.xml
index 39300f7..012b2b9 100644
--- a/jsonld-java/pom.xml
+++ b/jsonld-java/pom.xml
@@ -74,6 +74,7 @@
         <configuration>
           <instructions>
             <Bundle-SymbolicName>org.apache.commons.rdf.jsonldjava</Bundle-SymbolicName>
+            <Automatic-Module-Name>org.apache.commons.rdf.jsonldjava</Automatic-Module-Name>
             <Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional</Require-Capability>
             <Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.apache.commons.rdf.api.RDF</Provide-Capability>
           </instructions>

http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/0a182bcf/rdf4j/pom.xml
----------------------------------------------------------------------
diff --git a/rdf4j/pom.xml b/rdf4j/pom.xml
index 5b1b6cc..2ace87e 100644
--- a/rdf4j/pom.xml
+++ b/rdf4j/pom.xml
@@ -47,6 +47,7 @@
 						<Export-Package>org.apache.commons.rdf.rdf4j</Export-Package>
 						<Private-Package>org.apache.commons.rdf.rdf4j.impl</Private-Package>
 						<Bundle-SymbolicName>org.apache.commons.rdf.rdf4j</Bundle-SymbolicName>
+						<Automatic-Module-Name>org.apache.commons.rdf.rdf4j</Automatic-Module-Name>
 						<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional</Require-Capability>
 						<Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.apache.commons.rdf.api.RDF</Provide-Capability>
 					</instructions>

http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/0a182bcf/simple/pom.xml
----------------------------------------------------------------------
diff --git a/simple/pom.xml b/simple/pom.xml
index e1dc104..14e0e0d 100644
--- a/simple/pom.xml
+++ b/simple/pom.xml
@@ -63,6 +63,7 @@
         <configuration>
           <instructions>
             <Bundle-SymbolicName>org.apache.commons.rdf.simple</Bundle-SymbolicName>
+            <Automatic-Module-Name>org.apache.commons.rdf.simple</Automatic-Module-Name>
             <Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional</Require-Capability>
             <Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.apache.commons.rdf.api.RDF</Provide-Capability>
           </instructions>


[2/2] commons-rdf git commit: Merge remote-tracking branch 'acoburn/COMMONSRDF-64'

Posted by st...@apache.org.
Merge remote-tracking branch 'acoburn/COMMONSRDF-64'

COMMONSRDF-64: Adds Automatic-Module-Name to the bundle manifests

Fix contributed by Aaron Coburn @acoburn
This closes #40

Signed-off-by: Stian Soiland-Reyes <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/58fcfd72
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/58fcfd72
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/58fcfd72

Branch: refs/heads/master
Commit: 58fcfd72358960df160b1c9ccdae37260893f49b
Parents: bf9f913 0a182bc
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Thu Sep 28 22:37:18 2017 +0100
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Thu Sep 28 22:39:15 2017 +0100

----------------------------------------------------------------------
 api/pom.xml         | 11 +++++++++++
 jena/pom.xml        |  1 +
 jsonld-java/pom.xml |  1 +
 rdf4j/pom.xml       |  1 +
 simple/pom.xml      |  1 +
 5 files changed, 15 insertions(+)
----------------------------------------------------------------------