<?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">
    <parent>
        <groupId>ch.codeblock.qrinvoice</groupId>
        <artifactId>qrinvoice-root</artifactId>
        <version>1.21</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>ch.codeblock.qrinvoice.pdfbox</groupId>
    <artifactId>qrinvoice-pdfbox</artifactId>

    <name>QR Invoice Library - PDFBox</name>
    <description>Provides an PDFBox based PDF scanning implementation</description>

    <licenses>
        <license>
            <name>GNU Affero General Public License v3</name>
            <url>http://www.fsf.org/licensing/licenses/agpl-3.0.html</url>
        </license>
    </licenses>

    <properties>
        <pdfbox.version>2.0.30</pdfbox.version>
        <pdfbox-jbig2-imageio.version>3.0.4</pdfbox-jbig2-imageio.version>
        <jai-imageio.version>1.4.0</jai-imageio.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>ch.codeblock.qrinvoice.core</groupId>
            <artifactId>qrinvoice-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
            <version>${pdfbox.version}</version>
        </dependency>
        <dependency>
            <groupId>com.github.jai-imageio</groupId>
            <artifactId>jai-imageio-core</artifactId>
            <version>${jai-imageio.version}</version>
        </dependency>
        <dependency>
            <groupId>com.github.jai-imageio</groupId>
            <artifactId>jai-imageio-jpeg2000</artifactId>
            <version>${jai-imageio.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>jbig2-imageio</artifactId>
            <version>${pdfbox-jbig2-imageio.version}</version>
        </dependency>
        <!-- test dependencies -->
        <dependency>
            <groupId>ch.codeblock.qrinvoice.tests</groupId>
            <artifactId>qrinvoice-tests-resources</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
