Skip to content

Commit

Permalink
FOP 2.10 config notes (FOP 2.10 not used yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
plutext committed Nov 29, 2024
1 parent 3b5d928 commit e13cc2a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
20 changes: 19 additions & 1 deletion docx4j-export-fo/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//requires fop.events;
// requires qdox;

requires fop;
requires fop; // FOP 2.7
// deps of org.apache.xmlgraphics:fop-core:jar:2.5
requires batik.anim;
requires batik.css;
Expand All @@ -36,6 +36,24 @@

// necessary for FOP 2.9 but not 2.9 or earlier
// requires fop.core;

// FOP 2.10
// requires org.apache.xmlgraphics.fop.core;
// requires org.apache.xmlgraphics.fop.events;
// requires org.apache.xmlgraphics.fop.util;
//
// // deps of org.apache.xmlgraphics:fop-core:jar:2.5
// requires org.apache.xmlgraphics.batik.anim;
// requires org.apache.xmlgraphics.batik.css;
// requires org.apache.xmlgraphics.batik.dom;
// requires org.apache.xmlgraphics.batik.ext;
// requires org.apache.xmlgraphics.batik.parser;
//// requires org.apache.xmlgraphics.batik.shared.resources;
//// requires org.apache.xmlgraphics.batik.svg.dom;
// requires org.apache.xmlgraphics.batik.util;
// requires org.apache.xmlgraphics.batik.constants;
// requires org.apache.xmlgraphics.batik.i18n;



exports org.docx4j.convert.out.fo;
Expand Down
13 changes: 9 additions & 4 deletions docx4j-samples-docx-export-fo/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
requires org.docx4j.openxml_objects;

requires org.docx4j.export_fo;
requires fop;
requires fop; // FOP 2.7

// necessary for FOP 2.9 but not 2.8 or earlier
// requires fop.core;
// requires fop.events;
// necessary for broken FOP 2.9 but not 2.8 or earlier
// requires fop.core;
// requires fop.events;

// necessary for FOP 2.10, but broken
// requires org.apache.xmlgraphics.fop.core;
// requires org.apache.xmlgraphics.fop.events;
// requires org.apache.xmlgraphics.fop.util;

requires jakarta.xml.bind;

Expand Down

0 comments on commit e13cc2a

Please sign in to comment.