Erweiterungen

This commit is contained in:
2025-09-19 21:34:48 +02:00
parent 215e933f44
commit 09e39839cc
4 changed files with 288 additions and 10 deletions

31
pom.xml
View File

@@ -123,6 +123,35 @@
<version>3.0.3</version>
</dependency>
<!-- iText8 for PDF generation -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-core</artifactId>
<version>8.0.5</version>
<type>pom</type>
</dependency>
<!-- iText8 Kernel (PDF core functionality) -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>kernel</artifactId>
<version>8.0.5</version>
</dependency>
<!-- iText8 Layout (document layout) -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>layout</artifactId>
<version>8.0.5</version>
</dependency>
<!-- iText8 HTML to PDF converter -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>html2pdf</artifactId>
<version>5.0.5</version>
</dependency>
</dependencies>
<build>
@@ -280,4 +309,4 @@
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
</project>