parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.stackbox.archetypes</groupId>
<artifactId>parent</artifactId>
<version>0.0.2-RELEASE</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>org.stackbox.archetypes</groupId>
<artifactId>parent</artifactId>
<version>0.0.2-RELEASE</version>
<packaging>pom</packaging>
<url>http://github.com/superalsrk/org.stackbox.archetypes</url>
<name>org.stackbox.archetypes</name>
<description>A set of maven3 archetypes during my career</description>
<developers>
<developer>
<id>lvsijia</id>
<name>lvsijia</name>
<email>lvsijai@miaozhen.com</email>
<url>http://stackbox.org</url>
<organization>Miaozhen Systems</organization>
<organizationUrl>http://www.miaozhen.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:superalsrk/org.stackbox.archetypes.git</connection>
<url>scm:git@github.com:superalsrk/org.stackbox.archetypes.git</url>
<developerConnection>scm:git:git@github.com:superalsrk/org.stackbox.archetypes.git</developerConnection>
<tag>parent-0.0.2</tag>
</scm>
<distributionManagement>
<!-- Repository for snapshots -->
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<!-- Repository for releases -->
<repository>
<id>nexus-releases</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<modules>
<module>webapp-ssm-basic</module>
<module>hadoop-v1-mr</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>