<?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.itext5</groupId>
    <artifactId>qrinvoice-itext5</artifactId>

    <name>QR Invoice Library - iText 5</name>
    <description>Provides an iText 5 specific payment part receipt writer</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>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>license-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    
    <dependencies>
        <dependency>
            <groupId>ch.codeblock.qrinvoice.core</groupId>
            <artifactId>qrinvoice-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itextpdf</artifactId>
            <version>${version.itext5}</version>
        </dependency>
    </dependencies>

</project>