Skip to content

Commit

Permalink
JENA-1525: More Automatic-Module-Name
Browse files Browse the repository at this point in the history
  • Loading branch information
afs committed Apr 18, 2018
1 parent 58a942b commit 928e70f
Show file tree
Hide file tree
Showing 7 changed files with 259 additions and 192 deletions.
1 change: 0 additions & 1 deletion jena-db/jena-tdb2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<automatic.module.name>org.apache.jena.tdb2</automatic.module.name>
</properties>


<dependencies>

<dependency>
Expand Down
14 changes: 13 additions & 1 deletion jena-elephas/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ limitations under the License.
<plugin.compiler.version>2.6.0</plugin.compiler.version>
<mrunit.version>1.1.0</mrunit.version>
<airline.version>2.1.1</airline.version>
<automatic.module.name>org.apache.jena.elephas</automatic.module.name>
</properties>

<!-- Profiles to allow building for different Hadoop versions -->
Expand All @@ -59,7 +60,18 @@ limitations under the License.
</profiles>

<build>
<plugins>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down
9 changes: 8 additions & 1 deletion jena-fuseki1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format>
<build.time.xsd>${maven.build.timestamp}</build.time.xsd>

<automatic.module.name>org.apache.jena.fuseki1</automatic.module.name>
</properties>

<dependencies>
Expand Down Expand Up @@ -262,6 +262,13 @@
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>


Expand Down
15 changes: 15 additions & 0 deletions jena-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<relativePath>..</relativePath>
</parent>

<properties>
<automatic.module.name>org.apache.jena.jdbc</automatic.module.name>
</properties>

<modules>
<module>jena-jdbc-core</module>
<module>jena-jdbc-driver-remote</module>
Expand Down Expand Up @@ -63,6 +67,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 928e70f

Please sign in to comment.