parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>pt.lr-os</groupId>
<artifactId>parent</artifactId>
<version>1.0.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>pt.lr-os</groupId>
<artifactId>parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Parent pom for Open Source Projects from lr-os</description>
<url>https://github.com/luisriscado/orglr-maven-parent</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/luisriscado/orglr-maven-parent.git</connection>
<developerConnection>scm:git:ssh://github.com/luisriscado/orglr-maven-parent.git</developerConnection>
<url>https://github.com/luisriscado/orglr-maven-parent/tree/master</url>
</scm>
<developers>
<developer>
<email>developer@lr-os.pt</email>
<name>Luis Riscado</name>
<id>lr</id>
<organization>lr-os</organization>
<organizationUrl>www.lr-os.pt</organizationUrl>
<roles>
<role>Developer</role>
<role>Researcher</role>
<role>Curious</role>
</roles>
</developer>
</developers>
<organization>
<name>lr-os</name>
<url>www.lr-os.pt</url>
</organization>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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>