2022-10-03 17:41:45 -04:00
|
|
|
<?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>
|
2022-11-01 07:46:48 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
<artifactId>itextpdf</artifactId>
|
2023-05-08 09:16:46 -04:00
|
|
|
<version>${itextpdf.version}</version>
|
2022-11-01 07:46:48 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
|
<artifactId>pdfbox</artifactId>
|
2023-05-08 09:16:46 -04:00
|
|
|
<version>${pdfbox.version}</version>
|
2022-11-01 07:46:48 -04:00
|
|
|
</dependency>
|
2022-10-03 17:41:45 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2022-12-20 12:07:54 -05:00
|
|
|
<finalName>pdf-2</finalName>
|
2022-10-03 17:41:45 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2023-05-08 09:16:46 -04:00
|
|
|
<itextpdf.version>5.5.13.3</itextpdf.version>
|
2022-10-03 17:41:45 -04:00
|
|
|
<itextpdf.core.version>7.2.3</itextpdf.core.version>
|
|
|
|
<itextpdf.cleanup.version>3.0.1</itextpdf.cleanup.version>
|
2023-11-10 23:55:11 -05:00
|
|
|
<pdfbox.version>3.0.0</pdfbox.version>
|
2022-10-03 17:41:45 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|