2015-11-27 13:53:55 +00:00
|
|
|
<?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>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2016-01-07 11:05:18 +00:00
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2015-11-27 13:53:55 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Kemitix Parent</name>
|
|
|
|
<description>Common Parent with preconfigured plugins.</description>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/kemitix/kemitix-parent/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:kemitix/kemitix-parent.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/kemitix-parent.git</developerConnection>
|
|
|
|
<url>git@github.com:kemitix/kemitix-parent.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<url>https://github.com/kemitix/kemitix-parent</url>
|
|
|
|
|
|
|
|
<inceptionYear>2015</inceptionYear>
|
|
|
|
|
|
|
|
<prerequisites>
|
|
|
|
<maven>3.0.4</maven>
|
|
|
|
</prerequisites>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT License (MIT)</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Paul Campbell</name>
|
|
|
|
<email>pcampbell@kemitix.net</email>
|
|
|
|
<organization>Kemitix</organization>
|
|
|
|
<organizationUrl>https://github.com/kemitix/</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
2015-12-29 09:08:34 +00:00
|
|
|
<id>release</id>
|
2015-11-27 13:53:55 +00:00
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>performRelease</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-01-07 10:48:17 +00:00
|
|
|
<!-- plugin sequence: javadoc, sources, gpg, deploy -->
|
2015-11-27 13:53:55 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-01-07 10:48:17 +00:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.3</version>
|
2015-11-27 13:53:55 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-01-07 10:48:17 +00:00
|
|
|
<id>attach-javadocs</id>
|
2015-11-27 13:53:55 +00:00
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
2016-01-07 10:48:17 +00:00
|
|
|
<goal>jar</goal>
|
2015-11-27 13:53:55 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-01-07 10:48:17 +00:00
|
|
|
</plugin><!-- maven-javadoc-plugin -->
|
2015-12-29 09:08:34 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-source-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-01-07 10:48:17 +00:00
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<configuration>
|
|
|
|
<passphrase>${gpg.passphrase}</passphrase>
|
|
|
|
</configuration>
|
2015-12-29 09:08:34 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-01-07 10:48:17 +00:00
|
|
|
<id>sign-artifacts</id>
|
2015-12-29 09:08:34 +00:00
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
2016-01-07 10:48:17 +00:00
|
|
|
<goal>sign</goal>
|
2015-12-29 09:08:34 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-01-07 10:48:17 +00:00
|
|
|
</plugin><!-- maven-gpg-plugin -->
|
2015-12-29 09:08:34 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</plugin><!-- maven deploy-plugin -->
|
2015-11-27 13:53:55 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-12-29 09:08:34 +00:00
|
|
|
</profile><!-- release -->
|
2015-11-27 13:53:55 +00:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2015-12-07 11:51:56 +00:00
|
|
|
<version>6.13</version>
|
2015-11-27 13:53:55 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin><!-- maven-checkstyle-plugin -->
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.3</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-Xlint:unchecked</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- maven-compiler-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.18.1</version>
|
|
|
|
</plugin><!-- maven-surefire-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>2.18.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>verify</id>
|
|
|
|
<goals>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-failsafe-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>2.17</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<failOnViolation>true</failOnViolation>
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
<linkXRef>true</linkXRef>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-checkstyle-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
2015-12-29 12:19:37 +00:00
|
|
|
<version>3.6</version>
|
2015-11-27 13:53:55 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>pmd</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>pmd</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>cpd</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>cpd</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-pmd-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>check</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- findbugs-maven-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.7.5.201505241946</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-check</id>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<rule implementation="org.jacoco.maven.RuleConfiguration">
|
|
|
|
<element>CLASS</element>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*Test</exclude>
|
|
|
|
</excludes>
|
|
|
|
<limits>
|
|
|
|
<limit>
|
|
|
|
<counter>LINE</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
|
|
|
<minimum>0.50</minimum>
|
|
|
|
</limit>
|
|
|
|
</limits>
|
|
|
|
</rule>
|
|
|
|
<rule implementation="org.jacoco.maven.RuleConfiguration">
|
|
|
|
<element>CLASS</element>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*Test</exclude>
|
|
|
|
</excludes>
|
|
|
|
<limits>
|
|
|
|
<limit implementation="org.jacoco.report.check.Limit">
|
|
|
|
<counter>INSTRUCTION</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
|
|
|
<minimum>0.80</minimum>
|
|
|
|
</limit>
|
|
|
|
<limit implementation="org.jacoco.report.check.Limit">
|
|
|
|
<counter>CLASS</counter>
|
|
|
|
<value>MISSEDCOUNT</value>
|
|
|
|
<maximum>0</maximum>
|
|
|
|
</limit>
|
|
|
|
</limits>
|
|
|
|
</rule>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- jacoco-maven-plugin -->
|
2016-01-04 12:44:08 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.pitest</groupId>
|
|
|
|
<artifactId>highwheel-maven</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>analyse</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- highwheel-maven -->
|
2016-01-07 12:45:50 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>digraph-dependency-maven-plugin</artifactId>
|
|
|
|
<version>0.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<basePackage>net.kemitix</basePackage>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>digraph</goal>
|
|
|
|
</goals>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- digraph-dependency-maven-plugin -->
|
2015-11-27 13:53:55 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>2.8.1</version>
|
|
|
|
</plugin><!-- maven-project-info-reports-plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
|
|
<version>2.18.1</version>
|
|
|
|
</plugin><!-- maven-surefire-report-plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</plugin><!-- maven-jxr-plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.7.5.201505241946</version>
|
|
|
|
</plugin><!-- jacoco-maven-plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>2.17</version>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>checkstyle</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin><!-- maven-checkstyle-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
2015-12-29 12:19:37 +00:00
|
|
|
<version>3.6</version>
|
2015-11-27 13:53:55 +00:00
|
|
|
<configuration>
|
|
|
|
<linkXref>true</linkXref>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- maven-pmd-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
</plugin><!-- findbugs-maven-plugin -->
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2015-11-27 13:57:00 +00:00
|
|
|
</project>
|