<?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.1.2</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>

    <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>