]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-3159: Set an automatic module name by Samael Bate
authorSimon Steiner <ssteiner@apache.org>
Thu, 22 Feb 2024 12:01:29 +0000 (12:01 +0000)
committerSimon Steiner <ssteiner@apache.org>
Thu, 22 Feb 2024 12:01:29 +0000 (12:01 +0000)
fop-core/pom.xml
fop-events/pom.xml
fop-sandbox/pom.xml
fop-transcoder/pom.xml
fop-util/pom.xml
fop/pom.xml
pom.xml

index d1e1a2f650b243e9512d39e72602c89e6cae0f6a..a041e727da26aa1f2d62d77812f98d2cd0c481f0 100644 (file)
             <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>
index a7a6d2d0e1e85652cdb1bd002c63627e06570ae2..15e4e994778d020e60acf89a9a79ea4c72a728c3 100644 (file)
 
   <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>
index 880195c65fcd5ac11808d8325adce58897b46a01..c1bc58f458f438483fc7cd575599a793b481d8bf 100644 (file)
@@ -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>
index 2ef6f7fc776d35829e80528e32cfdbfed1b9956e..0af565a795e7dc6478ac28ccea11b6d794789883 100644 (file)
@@ -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>
index 33fc903c3e8268ae4407b362db605a69082d8828..109f219a78d100cec1f7fc619eb607bc5aedb415 100644 (file)
 
   <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>
index 5845e1f2c4977320d14abaea0df32d21d87a4112..43d68deca9bd030ed813027947ec7f929958e3a3 100644 (file)
@@ -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>
diff --git a/pom.xml b/pom.xml
index aa61f80a61c882663cd279064356dccd2abcd766..91d95dcf9501cb9403ee78d4717c8f6d39ae9515 100644 (file)
--- a/pom.xml
+++ b/pom.xml
   <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>