2015-11-27 13:53:55 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-01-14 17:32:35 +00:00
|
|
|
<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">
|
2015-11-27 13:53:55 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2018-06-30 12:18:23 +01:00
|
|
|
<version>DEV-SNAPSHOT</version>
|
2015-11-27 13:53:55 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2017-12-31 11:05:58 +00:00
|
|
|
<name>Kemitix Parent</name>
|
|
|
|
<description>A parent POM for my own personal projects</description>
|
|
|
|
|
2015-11-27 13:53:55 +00:00
|
|
|
<issueManagement>
|
2020-03-16 15:48:09 +00:00
|
|
|
<url>https://github.com/kemitix/kemitix-parent/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
2015-11-27 13:53:55 +00:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2020-03-16 15:48:09 +00:00
|
|
|
<url>https://github.com/kemitix/kemitix-parent</url>
|
|
|
|
<connection>scm:git:https://github.com/kemitix/kemitix-parent.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/kemitix-parent.git</developerConnection>
|
2015-11-27 13:53:55 +00:00
|
|
|
</scm>
|
|
|
|
|
2020-03-16 15:48:09 +00:00
|
|
|
<url>https://github.com/kemitix/kemitix-parent</url>
|
2015-11-27 13:53:55 +00:00
|
|
|
|
|
|
|
<inceptionYear>2015</inceptionYear>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT License (MIT)</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2017-02-27 10:19:08 +00:00
|
|
|
<java.version>1.8</java.version>
|
2021-05-25 06:43:58 +01:00
|
|
|
<maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version>
|
2020-03-14 11:05:21 +00:00
|
|
|
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
|
2017-12-31 14:17:38 +00:00
|
|
|
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
2018-10-07 11:01:47 +01:00
|
|
|
<maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
|
2018-02-28 06:53:44 +00:00
|
|
|
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
|
2015-11-27 13:53:55 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Paul Campbell</name>
|
|
|
|
<email>pcampbell@kemitix.net</email>
|
|
|
|
<organization>Kemitix</organization>
|
2020-03-16 15:48:09 +00:00
|
|
|
<organizationUrl>https://github.com/kemitix/</organizationUrl>
|
2015-11-27 13:53:55 +00:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2017-12-31 14:17:38 +00:00
|
|
|
<profiles>
|
2018-10-07 20:07:46 +01:00
|
|
|
<profile>
|
|
|
|
<id>verify</id>
|
|
|
|
<!--
|
|
|
|
The verify profile is intended to be used only when the verify phase is initiated from Jenkins.
|
|
|
|
The test phase should have completed successfully as part of a separate mvn invocation.
|
|
|
|
The following properties disable some of the plugins from executing again during this verify phase.
|
|
|
|
Performing "mvn -P verify clean verify" will fail. Instead: "mvn clean test && mvn -P verify verify"
|
|
|
|
-->
|
|
|
|
<properties>
|
|
|
|
<maven.main.skip>true</maven.main.skip>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
<jacoco.skip>true</jacoco.skip>
|
|
|
|
</properties>
|
|
|
|
</profile><!-- verify -->
|
|
|
|
|
2017-12-31 14:17:38 +00:00
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
2018-10-07 20:07:46 +01:00
|
|
|
<!--
|
|
|
|
The release profile is intended to be used only when the deploy phase is initiated from Jenkins.
|
|
|
|
The install phase should have completed successfully as part of a separate mvn invocation.
|
|
|
|
The following properties disable some of the plugins from executing again during this deploy phase.
|
|
|
|
Performing "mvn -P release clean deploy" will fail. Instead: "mvn clean install && mvn -P release deploy"
|
|
|
|
-->
|
|
|
|
<properties>
|
|
|
|
<maven.main.skip>true</maven.main.skip>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
<jacoco.skip>true</jacoco.skip>
|
|
|
|
<skipITs>true</skipITs>
|
|
|
|
<maven.install.skip>true</maven.install.skip>
|
|
|
|
</properties>
|
2017-12-31 14:17:38 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-02-28 06:53:44 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${maven-javadoc-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-javadoc-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>${maven-source-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-source-plugin -->
|
|
|
|
|
2017-12-31 14:17:38 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${maven-gpg-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<passphrase>${gpg.passphrase}</passphrase>
|
2018-02-28 06:53:44 +00:00
|
|
|
<gpgArguments>
|
2018-06-30 12:32:49 +01:00
|
|
|
<arg>--verbose</arg>
|
2018-02-28 06:53:44 +00:00
|
|
|
<arg>--batch</arg>
|
2018-06-30 12:32:49 +01:00
|
|
|
<arg>--no-tty</arg>
|
2018-02-28 06:53:44 +00:00
|
|
|
<arg>--pinentry-mode</arg>
|
|
|
|
<arg>loopback</arg>
|
|
|
|
</gpgArguments>
|
2017-12-31 14:17:38 +00:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-gpg-plugin -->
|
2018-02-28 06:53:44 +00:00
|
|
|
|
2018-10-07 11:01:47 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<!-- disable this plugin in favour of the nexus-staging-maven-plugin -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- maven-deploy-plugin -->
|
|
|
|
|
2018-02-28 06:53:44 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>${nexus-staging-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
2020-03-16 15:48:09 +00:00
|
|
|
<serverId>sonatype-nexus-staging</serverId>
|
2018-02-28 06:53:44 +00:00
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<skipStaging>false</skipStaging>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- nexus-staging-maven-plugin -->
|
2017-12-31 14:17:38 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<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>
|
2018-10-07 20:07:46 +01:00
|
|
|
</profile><!-- release -->
|
|
|
|
</profiles>
|
2017-12-26 09:30:19 +00:00
|
|
|
|
2015-11-27 13:57:00 +00:00
|
|
|
</project>
|