<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         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>

    <groupId>com.hello2morrow</groupId>
    <artifactId>LicenseUtil</artifactId>
    <version>1.1</version>

    <properties>
        <maven.compiler.release>21</maven.compiler.release>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.10.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.10.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <distributionManagement>
        <repository>
            <id>hello2morrow.maven.repository</id>
            <name>hello2morrow Maven Repository</name>
            <url>https://maven.hello2morrow.com/repository/</url>
        </repository>
        <snapshotRepository>
            <id>hello2morrow.maven.repository</id>
            <name>hello2morrow Maven Repository</name>
            <url>https://maven.hello2morrow.com/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

</project>