blackhole
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.proofpoint.event</groupId>
<artifactId>blackhole</artifactId>
<version>1.1</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.event</groupId>
<artifactId>blackhole</artifactId>
<version>1.1</version>
<name>blackhole</name>
<description>Black hole</description>
<url>https://github.com/proofpoint/blackhole</url>
<parent>
<groupId>com.proofpoint.platform</groupId>
<artifactId>rest-server-base</artifactId>
<version>0.60</version>
</parent>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<main-class>com.proofpoint.event.blackhole.Main</main-class>
</properties>
<scm>
<connection>scm:git:git://github.com/proofpoint/blackhole.git</connection>
<developerConnection>scm:git:git@github.com:proofpoint/blackhole.git</developerConnection>
<url>https://github.com/proofpoint/blackhole</url>
</scm>
<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>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.weakref</groupId>
<artifactId>jmxutils</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>configuration</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>node</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>event-experimental</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>discovery-experimental</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>jmx-http-rpc-experimental</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>jmx</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>json</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>experimental</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>http-client-experimental</artifactId>
<!-- TODO: add this to rest-server-base -->
<!--suppress MavenModelInspection -->
<version>${project.parent.version}</version>
</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>
</dependencies>
<build>
<plugins>
<!--
Do a license check by running: mvn license:check
Update the license by running: mvn license:format
-->
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<header>license-header.txt</header>
<strictCheck>true</strictCheck>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<useDefaultExcludes>true</useDefaultExcludes>
<excludes>
<exclude>**/README.txt</exclude>
<exclude>**/config.properties</exclude>
<exclude>**/log.properties</exclude>
<exclude>**/logback-test.xml</exclude>
<exclude>**/.gitignore</exclude>
<exclude>.idea/**</exclude>
<exclude>var/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>