75 lines
2.6 KiB
XML
75 lines
2.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-2</artifactId>
|
|
<name>pdf-2</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>com.itextpdf</groupId>
|
|
<artifactId>itext7-core</artifactId>
|
|
<version>${itextpdf.core.version}</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>cleanup</artifactId>
|
|
<version>${itextpdf.cleanup.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>${itextpdf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>${pdfbox.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi-ooxml.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>${log4j-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>${log4j-core.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>pdf-2</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<properties>
|
|
<itextpdf.version>5.5.13.3</itextpdf.version>
|
|
<itextpdf.core.version>7.2.3</itextpdf.core.version>
|
|
<itextpdf.cleanup.version>3.0.1</itextpdf.cleanup.version>
|
|
<pdfbox.version>3.0.0</pdfbox.version>
|
|
<poi-ooxml.version>5.2.5</poi-ooxml.version>
|
|
<log4j-api.version>2.20.0</log4j-api.version>
|
|
<log4j-core.version>2.20.0</log4j-core.version>
|
|
</properties>
|
|
|
|
</project> |