<?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>dev.xethh.libs</groupId>
        <artifactId>toolkits</artifactId>
        <version>1.0.2</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>dev.xethh.libs.toolkits</groupId>
    <artifactId>base</artifactId>
    <version>1.0.2</version>

    <packaging>pom</packaging>
    <name>toolkits-base</name>
    <url>https://github.com/O7UNp/libs-toolkit-base</url>
    <description>POM for dev.xethh general utils</description>
    <licenses>
        <license>
            <name>The Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:git@github.com:O7UNp/libs-toolkit-base.git</connection>
        <developerConnection>scm:git:git@github.com:O7UNp/libs-toolkit-base.git</developerConnection>
        <url>https://github.com/O7UNp/libs-toolkit-base.git</url>
    </scm>
    <distributionManagement>
        <snapshotRepository>
            <id>ossrh_xethh_dev</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
            <id>ossrh_xethh_dev</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <testResources>
            <testResource>
                <directory>src/test/resources</directory>
            </testResource>
        </testResources>
    </build>

</project>