1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-01 08:00:48 +00:00

switch from fop to fop-core package

This commit is contained in:
HeinrichAD 2023-06-10 15:04:57 +02:00 committed by PlantUML
parent 8d7c681ae4
commit 178384370f

View File

@ -82,7 +82,7 @@
<jlatexmath-font-greek.version>${jlatexmath.version}</jlatexmath-font-greek.version> <jlatexmath-font-greek.version>${jlatexmath.version}</jlatexmath-font-greek.version>
<jlatexmath-font-cyrillic.version>${jlatexmath.version}</jlatexmath-font-cyrillic.version> <jlatexmath-font-cyrillic.version>${jlatexmath.version}</jlatexmath-font-cyrillic.version>
<!-- PDF --> <!-- PDF -->
<batik-all.version>1.16</batik-all.version> <batik.version>1.16</batik.version>
<fop.version>2.8</fop.version> <fop.version>2.8</fop.version>
<!-- Testing --> <!-- Testing -->
@ -168,23 +168,23 @@
- batik-dom - batik-dom
- batik-svgrasterizer (includes batik-dom) - batik-svgrasterizer (includes batik-dom)
- batik-svggen - batik-svggen
- fop - fop-core
--> -->
<dependency> <dependency>
<groupId>org.apache.xmlgraphics</groupId> <groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svgrasterizer</artifactId> <artifactId>batik-svgrasterizer</artifactId>
<version>${batik-all.version}</version> <version>${batik.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.xmlgraphics</groupId> <groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svggen</artifactId> <artifactId>batik-svggen</artifactId>
<version>${batik-all.version}</version> <version>${batik.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.xmlgraphics</groupId> <groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId> <artifactId>fop-core</artifactId>
<version>${fop.version}</version> <version>${fop.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>