uptake batik 1.16
This commit is contained in:
parent
ea72b7898a
commit
d3b997c428
78
pom.xml
78
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>de.pdv.apex</groupId>
|
<groupId>de.pdv.apex</groupId>
|
||||||
<artifactId>fop4apex</artifactId>
|
<artifactId>fop4apex</artifactId>
|
||||||
<version>0.10.6-SNAPSHOT</version>
|
<version>0.10.7-SNAPSHOT</version>
|
||||||
<name>fop4apex</name>
|
<name>fop4apex</name>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
<url>https://www.pdv.de</url>
|
<url>https://www.pdv.de</url>
|
||||||
@ -16,6 +16,7 @@
|
|||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<junit.version>5.9.1</junit.version>
|
<junit.version>5.9.1</junit.version>
|
||||||
|
<batik.version>1.16</batik.version>
|
||||||
<sonar.organization>omaster395464gh</sonar.organization>
|
<sonar.organization>omaster395464gh</sonar.organization>
|
||||||
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
||||||
</properties>
|
</properties>
|
||||||
@ -68,6 +69,7 @@
|
|||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- https://mvnrepository.com/artifact/net.bull.javamelody/javamelody-core -->
|
<!-- https://mvnrepository.com/artifact/net.bull.javamelody/javamelody-core -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.bull.javamelody</groupId>
|
<groupId>net.bull.javamelody</groupId>
|
||||||
@ -106,6 +108,62 @@
|
|||||||
<version>1.2</version>
|
<version>1.2</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-anim -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-anim</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-bridge -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-bridge</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-ext -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-ext</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-gvt -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-gvt</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-svggen -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-svggen</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-awt-util -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-awt-util</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-extension -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-extension</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-transcoder -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.xmlgraphics</groupId>
|
||||||
|
<artifactId>batik-transcoder</artifactId>
|
||||||
|
<version>${batik.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
<!-- End: Security fixes -->
|
<!-- End: Security fixes -->
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
@ -207,6 +265,24 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>dependency-check</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.owasp</groupId>
|
||||||
|
<artifactId>dependency-check-maven</artifactId>
|
||||||
|
<version>7.1.2</version>
|
||||||
|
<configuration>
|
||||||
|
<formats>
|
||||||
|
<format>html</format>
|
||||||
|
<format>json</format>
|
||||||
|
</formats>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user