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

    <parent>
        <groupId>com.github.bbottema</groupId>
        <artifactId>standard-project-parent</artifactId>
        <version>1.0.37</version>
    </parent>

    <artifactId>java-socks-proxy-server</artifactId>
    <packaging>jar</packaging>
    <name>java-socks-proxy-server</name>
    <version>4.2.0</version>
    <description>java-socks-proxy-server is a SOCKS 4/5 server for Java</description>
    <url>https://github.com/bbottema/java-socks-proxy-server</url>
    <inceptionYear>2019</inceptionYear>

    <properties>
        <license.owner.name>Benny Bottema</license.owner.name>
        <license.owner.email>benny@bennybottema.com</license.owner.email>
    </properties>

    <scm>
        <connection>scm:git:git://github.com/bbottema/java-socks-proxy-server.git</connection>
        <developerConnection>scm:git:git@github.com:bbottema/java-socks-proxy-server.git</developerConnection>
        <url>https://github.com/bbottema/java-socks-proxy-server</url>
    </scm>

    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/bbottema/java-socks-proxy-server/issues</url>
    </issueManagement>

    <distributionManagement>
        <snapshotRepository>
            <id>central</id>
            <url>https://central.sonatype.com/repository/maven-snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>central</id>
            <url>https://central.sonatype.com</url>
        </repository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <extensions>false</extensions>
                <configuration combine.self="override">
                    <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.sonatype.central</groupId>
                <artifactId>central-publishing-maven-plugin</artifactId>
                <version>0.9.0</version>
                <extensions>true</extensions>
                <configuration>
                    <publishingServerId>central</publishingServerId>
                    <centralSnapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</centralSnapshotsUrl>
                    <autoPublish>true</autoPublish>
                    <waitUntil>published</waitUntil>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.30</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>
