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

    <parent>
        <groupId>ch.codeblock.qrinvoice</groupId>
        <artifactId>qrinvoice-root</artifactId>
        <version>1.16</version>
    </parent>

    <groupId>ch.codeblock.qrinvoice.bulk</groupId>
    <artifactId>qrinvoice-bulk</artifactId>
    <version>1.16</version>

    <name>QR Invoice Library - Bulk</name>
    <description>Module which allows bulk creation of payment part and receipts</description>

    <properties>
        <poi.version>5.2.2</poi.version>
        <opencsv.version>5.7.0</opencsv.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>ch.codeblock.qrinvoice.core</groupId>
            <artifactId>qrinvoice-core</artifactId>
        </dependency>
        <dependency>
            <groupId>ch.codeblock.qrinvoice.openpdf</groupId>
            <artifactId>qrinvoice-openpdf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <scope>compile</scope>
            <version>${poi.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <scope>compile</scope>
            <version>${poi.version}</version>
        </dependency>

        <dependency>
            <groupId>com.opencsv</groupId>
            <artifactId>opencsv</artifactId>
            <version>${opencsv.version}</version>
            <scope>compile</scope>
        </dependency>


        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>