elb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.proofpoint.discovery</groupId>
<artifactId>elb</artifactId>
<version>1.0</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>elb</artifactId>
<version>1.0</version>
<name>discovery-elb</name>
<parent>
<groupId>com.proofpoint.platform</groupId>
<artifactId>rest-server-base</artifactId>
<version>0.48</version>
</parent>
<properties>
<main-class>com.proofpoint.discovery.elb.Main</main-class>
</properties>
<scm>
<connection>scm:git:git://github.com/proofpoint/discovery-elb.git</connection>
<developerConnection>scm:git:git@github.com:proofpoint/discovery-elb.git</developerConnection>
<url>http://github.com/proofpoint/discovery-elb</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>com.proofpoint.platform</groupId>
<artifactId>jmx-http-rpc-experimental</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.9</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.weakref</groupId>
<artifactId>jmxutils</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</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>discovery-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>json</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>jmx</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>node</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>units</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>experimental</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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<!--
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>var/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</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>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>