86 lines
3.0 KiB
XML
86 lines
3.0 KiB
XML
<?xml version="1.0"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>pdf</artifactId>
|
|
<name>pdf</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox-tools</artifactId>
|
|
<version>${pdfbox-tools.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sf.cssbox</groupId>
|
|
<artifactId>pdf2dom</artifactId>
|
|
<version>${pdf2dom.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>${itextpdf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf.tool</groupId>
|
|
<artifactId>xmlworker</artifactId>
|
|
<version>${xmlworker.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
<version>${poi-scratchpad.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-transcoder</artifactId>
|
|
<version>${batik-transcoder.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi-ooxml.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>pdf</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<properties>
|
|
<pdfbox-tools.version>2.0.3</pdfbox-tools.version>
|
|
<pdf2dom.version>1.6</pdf2dom.version>
|
|
<itextpdf.version>5.5.10</itextpdf.version>
|
|
<xmlworker.version>5.5.10</xmlworker.version>
|
|
<poi-scratchpad.version>3.15</poi-scratchpad.version>
|
|
<batik-transcoder.version>1.8</batik-transcoder.version>
|
|
<poi-ooxml.version>3.15</poi-ooxml.version>
|
|
</properties>
|
|
|
|
</project>
|