<?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>
    <properties>
        <!-- upgrading boofcv requires java11 -->
        <boofcv-io.version>0.39</boofcv-io.version>
    </properties>

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

    <groupId>ch.codeblock.qrinvoice.boofcv</groupId>
    <artifactId>qrinvoice-boofcv</artifactId>
    <version>1.20</version>

    <name>QR Invoice Library - BoofCV</name>
    <description>BoofCV module contains a BoofCV based implementation for detecting/decoding QR codes</description>

    <dependencies>
        <dependency>
            <groupId>ch.codeblock.qrinvoice.core</groupId>
            <artifactId>qrinvoice-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.boofcv</groupId>
            <artifactId>boofcv-io</artifactId>
            <version>${boofcv-io.version}</version><exclusions>
            <exclusion>
                <groupId>org.deepboof</groupId>
                <artifactId>main</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.deepboof</groupId>
                <artifactId>models</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.deepboof</groupId>
                <artifactId>io</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.yaml</groupId>
                <artifactId>snakeyaml</artifactId>
            </exclusion>
            <exclusion>
                <groupId>commons-io</groupId>
                <artifactId>commons-io</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.boofcv</groupId>
                <artifactId>boofcv-reconstruction</artifactId>
            </exclusion>
        </exclusions>
        </dependency>
    </dependencies>
    
</project>