|
|
@@ -12,6 +12,8 @@
|
|
|
<maven.compiler.source>25</maven.compiler.source>
|
|
|
<maven.compiler.target>25</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <!-- Define the version of OPEN HTML TO PDF in the properties section of your POM. -->
|
|
|
+ <openhtml.version>1.0.10</openhtml.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
@@ -46,6 +48,56 @@
|
|
|
<version>5.14.0</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- ALWAYS required, usually included transitively. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-core</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- Required for PDF output. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-pdfbox</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- Required for image output only. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-java2d</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- Optional, leave out if you do not need right-to-left or bi-directional text support. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-rtl-support</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- Optional, leave out if you do not need logging via slf4j. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-slf4j</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- Optional, leave out if you do not need SVG support. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-svg-support</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <!-- Optional, leave out if you do not need MathML support. -->
|
|
|
+ <!-- Introduced in RC-13. -->
|
|
|
+ <groupId>com.openhtmltopdf</groupId>
|
|
|
+ <artifactId>openhtmltopdf-mathml-support</artifactId>
|
|
|
+ <version>${openhtml.version}</version>
|
|
|
+ </dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|