servicerocket-oss
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.servicerocket</groupId>
<artifactId>servicerocket-oss</artifactId>
<version>6</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.servicerocket</groupId>
<artifactId>servicerocket-oss</artifactId>
<packaging>pom</packaging>
<name>ServiceRocket/CustomWare OSS</name>
<version>6</version>
<url>http://www.servicerocket.com/</url>
<description>ServiceRocket is the Strategic Services Partner for companies that need to get things done properly.</description>
<organization>
<name>ServiceRocket</name>
<url>${project.url}</url>
</organization>
<developers>
<developer>
<id>yclian</id>
<name>YC Lian</name>
<email>yc+oss@servicerocket.com</email>
<url>http://bitbucket.org/yclian</url>
<organization>ServiceRocket</organization>
<organizationUrl>${project.url}</organizationUrl>
<roles>
<role>Scrum Master</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://git@bitbucket.org/servicerocket/pom.git</connection>
<developerConnection>scm:git:ssh://git@bitbucket.org/servicerocket/pom.git</developerConnection>
<url>https://bitbucket.org/servicerocket/pom/</url>
<tag>6</tag>
</scm>
<repositories>
<repository>
<id>sonatype.oss</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype.oss.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>sonatype.oss.staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype.oss.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<platform.minVersion />
<platform.maxVersion />
<gpg.useAgent>false</gpg.useAgent>
<arguments />
<release.arguments />
<release.localCheckout>true</release.localCheckout>
<release.preparationGoals>clean package</release.preparationGoals>
<!-- If you use both Git flow and Maven release, you might want more control by turning this false. -->
<!-- See: https://github.com/vdemeester/java-config/blob/master/bin/mvn-release-flow -->
<release.pushChanges>true</release.pushChanges>
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.16</maven-surefire-plugin.version>
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
<properties-maven-plugin.version>1.0-alpha-2</properties-maven-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<arguments>-Psr-oss-release ${release.arguments} ${arguments}</arguments>
<goals>deploy</goals>
<localCheckout>${release.localCheckout}</localCheckout>
<preparationGoals>${release.preparationGoals}</preparationGoals>
<pushChanges>${release.pushChanges}</pushChanges>
<tagNameFormat>${project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>${properties-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>sr-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<useAgent>${gpg.useAgent}</useAgent>
</configuration>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>