122 lines
4.6 KiB
XML
122 lines
4.6 KiB
XML
<?xml version="1.0"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<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>
|
|
<dependency>
|
|
<groupId>org.thymeleaf</groupId>
|
|
<artifactId>thymeleaf</artifactId>
|
|
<version>${thymeleaf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xhtmlrenderer</groupId>
|
|
<artifactId>flying-saucer-pdf</artifactId>
|
|
<version>${flying-saucer-pdf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xhtmlrenderer</groupId>
|
|
<artifactId>flying-saucer-pdf-openpdf</artifactId>
|
|
<version>${flying-saucer-pdf-openpdf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>${jsoup.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.openhtmltopdf</groupId>
|
|
<artifactId>openhtmltopdf-core</artifactId>
|
|
<version>${open-html-pdf-core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.openhtmltopdf</groupId>
|
|
<artifactId>openhtmltopdf-pdfbox</artifactId>
|
|
<version>${open-html-pdfbox.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>3.0.0</pdfbox-tools.version>
|
|
<pdf2dom.version>2.0.1</pdf2dom.version>
|
|
<itextpdf.version>5.5.13.3</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>
|
|
<thymeleaf.version>3.1.2.RELEASE</thymeleaf.version>
|
|
<flying-saucer-pdf.version>9.3.1</flying-saucer-pdf.version>
|
|
<open-html-pdfbox.version>1.0.6</open-html-pdfbox.version>
|
|
<open-html-pdf-core.version>1.0.10</open-html-pdf-core.version>
|
|
<flying-saucer-pdf-openpdf.version>9.2.1</flying-saucer-pdf-openpdf.version>
|
|
<jsoup.version>1.16.2</jsoup.version>
|
|
</properties>
|
|
|
|
</project> |