Github user afs commented on a diff in the pull request:
https://github.com/apache/jena/pull/400#discussion_r181818306
--- Diff: jena-db/pom.xml ---
@@ -75,6 +79,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+
<Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
--- End diff --
My knowledge of JPMS is a bit weak. This module (jena-db) is a POM. This
means that Automatic-Module-Name with this setting will apply to all the jars
underneath this module (the jena-db-* modules) with the same name.
If a number of jars have the same Automatic-Module-Name, are they in the
same module? (which would be convenient).
Otherwise, I can fix up the submodules when merging it. No need to round
again.
---