<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright (c) 2022-2026 benelog GmbH & Co. KG
    All rights reserved.

    Unauthorized copying, modification, distribution,
    or use of this work, via any medium, is strictly prohibited.

    benelog GmbH & Co. KG reserves all rights not expressly granted herein,
    including the right to sell licenses for using this work.

-->

<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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>io.openepcis</groupId>
        <artifactId>openepcis-digital-link-toolkit-build</artifactId>
        <version>0.9.3</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>openepcis-digital-link-validator-parent</artifactId>
    <name>openepcis-digital-link-validator-parent</name>
    <packaging>pom</packaging>
    <description>OpenEPCIS EPC GS1 Digital Link Validation Tools to validate the GS1 AI against various validation rules</description>

    <modules>
        <module>core</module>
        <module>quarkus</module>
    </modules>

    <dependencyManagement>
        <dependencies>
            <!-- DigitalLink Utils -->
            <dependency>
                <groupId>io.openepcis</groupId>
                <artifactId>openepcis-digital-link-utils</artifactId>
                <version>${project.version}</version>
            </dependency>

            <!-- GS1 AI constants for pre-defined EPCIS Constants  -->
            <dependency>
                <groupId>io.openepcis</groupId>
                <artifactId>openepcis-epcis-constants</artifactId>
                <version>${project.version}</version>
            </dependency>

            <!-- Core Validator (validator/core)  -->
            <dependency>
                <groupId>io.openepcis</groupId>
                <artifactId>openepcis-digital-link-validator-core</artifactId>
                <version>${project.version}</version>
            </dependency>

            <!-- Quarkus Validator Runtime (validator/quarkus/runtime) -->
            <dependency>
                <groupId>io.openepcis.quarkus</groupId>
                <artifactId>quarkus-digital-link-validator</artifactId>
                <version>${project.version}</version>
            </dependency>

            <!-- Quarkus Validator Deployment (validator/quarkus/deployment) -->
            <dependency>
                <groupId>io.openepcis.quarkus</groupId>
                <artifactId>quarkus-digital-link-validator-deployment</artifactId>
                <version>${project.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>
</project>
