Skip to content

Commit

Permalink
FOP-3159: Set an automatic module name by Samael Bate
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsteiner1984 committed Feb 22, 2024
1 parent 08d676e commit ed60079
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 4 deletions.
5 changes: 4 additions & 1 deletion fop-core/pom.xml
Expand Up @@ -357,9 +357,12 @@
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Automatic-Module-Name>org.apache.xmlgraphics.fop.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugin>
</plugins>
<resources>
<resource>
Expand Down
11 changes: 11 additions & 0 deletions fop-events/pom.xml
Expand Up @@ -53,6 +53,17 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.apache.xmlgraphics.fop.events</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<!-- generate event collector models -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
1 change: 1 addition & 0 deletions fop-sandbox/pom.xml
Expand Up @@ -81,6 +81,7 @@
<mainClass>org.apache.fop.cli.Main</mainClass>
</manifest>
<manifestEntries>
<Automatic-Module-Name>org.apache.xmlgraphics.fop.sandbox</Automatic-Module-Name>
<SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
<SpecificationVersion>1.1</SpecificationVersion>
<SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
Expand Down
3 changes: 3 additions & 0 deletions fop-transcoder/pom.xml
Expand Up @@ -58,6 +58,9 @@
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Automatic-Module-Name>org.apache.xmlgraphics.fop.transcoder</Automatic-Module-Name>
</manifestEntries>
</archive>
<descriptors>
<descriptor>src/tools/resources/assembly/assembly.xml</descriptor>
Expand Down
11 changes: 11 additions & 0 deletions fop-util/pom.xml
Expand Up @@ -31,6 +31,17 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.apache.xmlgraphics.fop.util</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<!-- junit testing -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
1 change: 1 addition & 0 deletions fop/pom.xml
Expand Up @@ -52,6 +52,7 @@
<mainClass>org.apache.fop.cli.Main</mainClass>
</manifest>
<manifestEntries>
<Automatic-Module-Name>org.apache.xmlgraphics.fop</Automatic-Module-Name>
<SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
<SpecificationVersion>1.1</SpecificationVersion>
<SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -11,13 +11,13 @@
<url>http://xmlgraphics.apache.org/fop/</url>

<properties>
<ant.version>1.9.15</ant.version>
<ant.version>1.10.14</ant.version>
<antrun.plugin.version>1.8</antrun.plugin.version>
<batik.version>1.16.0-SNAPSHOT</batik.version>
<batik.version>1.17.0-SNAPSHOT</batik.version>
<build.helper.plugin.version>1.9.1</build.helper.plugin.version>
<checkstyle.plugin.version>2.14</checkstyle.plugin.version>
<commons.io.version>2.11.0</commons.io.version>
<commons.logging.version>1.0.4</commons.logging.version>
<commons.logging.version>1.3.0</commons.logging.version>
<compiler.plugin.version>3.11.0</compiler.plugin.version>
<exec.plugin.version>1.4.0</exec.plugin.version>
<findbugs.plugin.version>4.2.3</findbugs.plugin.version>
Expand Down

0 comments on commit ed60079

Please sign in to comment.