discovery-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.proofpoint.discovery</groupId>
<artifactId>discovery-server</artifactId>
<version>1.36</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.proofpoint.discovery</groupId>
<artifactId>discovery-server</artifactId>
<version>1.36</version>
<name>discovery-server</name>
<description>Discovery server</description>
<url>https://github.com/proofpoint/discovery</url>
<parent>
<groupId>com.proofpoint.platform</groupId>
<artifactId>library</artifactId>
<version>2.55</version>
</parent>
<properties>
<main-class>com.proofpoint.discovery.Main</main-class>
<project.docker.name>discovery</project.docker.name>
</properties>
<inceptionYear>2010</inceptionYear>
<organization>
<name>Proofpoint, Inc.</name>
<url>http://www.proofpoint.com</url>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/proofpoint/discovery.git</connection>
<developerConnection>scm:git:git@github.com:proofpoint/discovery.git</developerConnection>
<url>https://github.com/proofpoint/discovery</url>
<tag>1.36</tag>
</scm>
<developers>
</developers>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value-annotations</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<optional>true</optional>
</dependency>
<!-- Proofpoint platform -->
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>discovery</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>log</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>http-server</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>jaxrs</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>stats</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>jmx</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>jmx-http</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>reporting</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>reporting-client</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>audit</artifactId>
</dependency>
<!-- for packaging -->
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>launcher</artifactId>
<classifier>bin</classifier>
<type>tar.gz</type>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>testing</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<skipExistingHeaders>true</skipExistingHeaders>
<strictCheck>true</strictCheck>
<header>license-header.txt</header>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<excludes>
<exclude>**/.gitignore</exclude>
<exclude>**/README.txt</exclude>
<exclude>**/TODO</exclude>
<exclude>**/config*.properties</exclude>
<exclude>**/log.properties</exclude>
<exclude>**/*.json</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<useAgent>true</useAgent>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>