2018-01-31 01:25:55 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-03-22 22:28:34 -04:00
|
|
|
<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">
|
2018-01-31 01:25:55 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>9</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.moparisthebest.dns</groupId>
|
|
|
|
<artifactId>jDnsProxy</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>
|
2018-03-22 22:28:34 -04:00
|
|
|
Simple fast and lightweight DNS proxy and cache, implementing DNS-over-TLS, DNS-over-HTTPS, and Serve-Stale
|
2018-01-31 01:25:55 -05:00
|
|
|
</description>
|
|
|
|
<url>https://github.com/moparisthebest/jDnsProxy</url>
|
|
|
|
<organization>
|
|
|
|
<name>moparisthebest.com</name>
|
|
|
|
<url>https://www.moparisthebest.com</url>
|
|
|
|
</organization>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>moparisthebest</id>
|
|
|
|
<name>Travis Burtrum</name>
|
|
|
|
<email>admin@moparisthebest.com</email>
|
|
|
|
<url>https://www.moparisthebest.com/</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/moparisthebest/jDnsProxy.git</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/moparisthebest/jDnsProxy.git</developerConnection>
|
|
|
|
<url>https://github.com/moparisthebest/jDnsProxy</url>
|
|
|
|
</scm>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
2018-03-22 22:28:34 -04:00
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
2018-01-31 01:25:55 -05:00
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<properties>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<pushChanges>false</pushChanges>
|
|
|
|
<localCheckout>true</localCheckout>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.geekplace.javapinning</groupId>
|
|
|
|
<artifactId>java-pinning-java7</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<debug>true</debug>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<minimizeJar>false</minimizeJar>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<transformers>
|
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
<mainClass>com.moparisthebest.dns.DnsProxy</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>run-tests</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>maven.test.skip</name>
|
|
|
|
<value>false</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|