| Group ID: |
com.proofpoint.platform |
| Artifact ID: |
rest-server-base |
| Last modified: |
09.01.2017 19:10 |
| Packaging: |
pom |
| Name: |
REST Server Base POM |
| Description: |
Proofpoint platform REST server base POM |
| URL: |
http://github.com/proofpoint/platform |
|
|
| Size: |
0.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/proofpoint/platform/rest-server-base/1.50/rest-server-base-1.50.jar |
| POM: |
Show
hide
<?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>
<artifactId>rest-server-base</artifactId>
<packaging>pom</packaging>
<name>REST Server Base POM</name>
<description>Proofpoint platform REST server base POM</description>
<url>http://github.com/proofpoint/platform</url>
<parent>
<groupId>com.proofpoint.platform</groupId>
<artifactId>library</artifactId>
<version>1.50</version>
<relativePath>../library/pom.xml</relativePath>
</parent>
<profiles>
<profile>
<id>child-project-profile</id>
<!-- Activate profile in child projects, but not this project -->
<activation>
<file>
<missing>profile-activate-72946194395.do.not.remove</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<rules combine.children="append">
<requireProperty>
<property>main-class</property>
<message>The main-class property must be specified when building a platform tarball.</message>
<regex>.+</regex>
<regexMessage>The main-class property can not be empty.</regexMessage>
</requireProperty>
</rules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>${main-class}</mainClass>
<addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions>
</manifest>
<manifestEntries>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<attach>false</attach>
<descriptorRefs>
<descriptorRef>distribution</descriptorRef>
</descriptorRefs>
</configuration>
<dependencies>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>packaging</artifactId>
<version>1.50</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-distribution-tar.gz</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}-distribution.tar.gz</file>
<type>tar.gz</type>
</artifact>
</artifacts>
</configuration>
</execution>
<execution>
<id>attach-readme</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>README.txt</file>
<type>txt</type>
<classifier>readme</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>parent-project-profile</id>
<activation>
<file>
<exists>profile-activate-72946194395.do.not.remove</exists>
</file>
</activation>
<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>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>rest-server-base</artifactId>
<version>1.50</version>
</dependency>
|
| Gradle: |
com.proofpoint.platform:rest-server-base:1.50 |
| Dependency Graph: |
Show
Less
More
|