signservice-pdf-commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>se.idsec.signservice.commons</groupId>
<artifactId>signservice-pdf-commons</artifactId>
<version>2.3.1</version>
</dependency><!--
~ Copyright 2019-2025 IDsec Solutions AB
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>signservice-pdf-commons</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>se.idsec.signservice.commons</groupId>
<artifactId>signservice-commons-parent</artifactId>
<version>2.3.1</version>
</parent>
<name>IDsec Solutions :: SignService :: Commons :: PDF Commons</name>
<description>SignService PDF Commons</description>
<url>https://github.com/idsec-solutions/signservice-commons</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/idsec-solutions/signservice-commons.git</connection>
<developerConnection>scm:git:https://github.com/idsec-solutions/signservice-commons.git</developerConnection>
<url>https://github.com/idsec-solutions/signservice-commons/tree/master</url>
</scm>
<organization>
<name>IDsec Solutions AB</name>
<url>https://www.idsec.se</url>
</organization>
<developers>
<developer>
<name>Martin Lindström</name>
<email>martin@idsec.se</email>
<organization>IDsec Solutions AB</organization>
<organizationUrl>https://www.idsec.se</organizationUrl>
</developer>
<developer>
<name>Stefan Santesson</name>
<email>stefan@idsec.se</email>
<organization>IDsec Solutions AB</organization>
<organizationUrl>https://www.idsec.se</organizationUrl>
</developer>
</developers>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>se.idsec.signservice.commons</groupId>
<artifactId>signservice-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>1.19</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-codec</artifactId>
<version>1.19</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doctitle>SignService PDF Commons - ${project.version}</doctitle>
<windowtitle>SignService PDF Commons - ${project.version}</windowtitle>
<links>
<link>https://idsec-solutions.github.io/signservice-commons/javadoc/signservice-commons/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
</project>