pojobuilder-maven-plugin-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.flextrade.pojobuilder</groupId>
<artifactId>pojobuilder-maven-plugin-parent</artifactId>
<version>1.0.1</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.flextrade.pojobuilder</groupId>
<artifactId>pojobuilder-maven-plugin-parent</artifactId>
<version>1.0.1</version>
<packaging>pom</packaging>
<name>pojobuilder-maven-plugin-parent</name>
<description>Parent project for PojoBuilder Maven Plugin</description>
<url>https://github.com/FlexTradeUKLtd/pojobuilder-mvn</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Paul Hutchin</name>
<email>paul.hutchin@flextrade.com</email>
<organization>FlexTrade UK Ltd</organization>
<organizationUrl>http://www.flextrade.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:FlexTradeUKLtd/pojobuilder-mvn.git</connection>
<developerConnection>scm:git@github.com:FlexTradeUKLtd/pojobuilder-mvn.git</developerConnection>
<url>http://github.com/FlexTradeUKLtd/pojobuilder-mvn.git</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.8</source>
<!-- avoiding javadoc warnings caused by Mojo annotations -->
<tagletArtifacts>
<tagletArtifact>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-javadoc</artifactId>
<version>3.0</version>
</tagletArtifact>
</tagletArtifacts>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<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>
</profile>
</profiles>
<modules>
<module>pojobuilder-maven-plugin</module>
<module>pojobuilder-maven-plugin-test</module>
</modules>
</project>