2016-11-03 05:58:57 -04:00
|
|
|
<?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>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>pdf</artifactId>
|
|
|
|
<name>pdf</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-12-10 13:20:12 -05:00
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<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>
|
|
|
|
|
2016-11-03 05:58:57 -04:00
|
|
|
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${junit.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
|
<artifactId>pdfbox-tools</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${pdfbox-tools.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.cssbox</groupId>
|
|
|
|
<artifactId>pdf2dom</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${pdf2dom.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
<artifactId>itextpdf</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${itextpdf.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-11-14 06:32:51 -05:00
|
|
|
<groupId>com.itextpdf.tool</groupId>
|
|
|
|
<artifactId>xmlworker</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${xmlworker.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-scratchpad</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${poi-scratchpad.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
<artifactId>batik-transcoder</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${batik-transcoder.version}</version>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependency>
|
2016-11-06 17:08:05 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
2016-12-10 13:20:12 -05:00
|
|
|
<version>${poi-ooxml.version}</version>
|
2016-11-06 17:08:05 -05:00
|
|
|
</dependency>
|
2016-11-03 05:58:57 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>pdf</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|