<?xml version="1.0" encoding="UTF-8"?>
<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>

    <groupId>de.schoenewerk</groupId>
    <artifactId>office-2-pdf</artifactId>
    <version>1.0.1-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>21</maven.compiler.source>
        <maven.compiler.target>21</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

        <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>

        <home>gitea.example.com</home>
        <owner>your-username-or-organization</owner>

        <gitea.maven.url>${home}/api/packages/${owner}/maven</gitea.maven.url>
    </properties>

    <dependencies>

    <!-- jod converter -->
        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
            <version>2.12.2</version>
        </dependency>

        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-core</artifactId>
            <version>4.4.7</version>
        </dependency>
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-local</artifactId>
            <version>4.4.7</version>
        </dependency>
<!--        <dependency>-->
<!--            <groupId>org.jodconverter</groupId>-->
<!--            <artifactId>jodconverter-remote</artifactId>-->
<!--            <version>4.4.7</version>-->
<!--        </dependency>-->
    <!-- testcontainers -->
        <dependency>
            <groupId>org.testcontainers</groupId>
            <artifactId>testcontainers</artifactId>
            <version>2.0.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testcontainers</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>1.19.8</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.10.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.10.3</version>
            <scope>test</scope>
        </dependency>
    <!-- -->

    </dependencies>

    <distributionManagement>
        <repository>
            <id>gitea</id>
            <url>${gitea.maven.url}</url>
        </repository>
        <snapshotRepository>
            <id>gitea</id>
            <url>${gitea.maven.url}</url>
        </snapshotRepository>
    </distributionManagement>
</project>