2017-01-03 20:08:58 +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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
2017-01-14 18:57:13 +00:00
|
|
|
<version>2.0.3</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>kemitix-checkstyle-ruleset</artifactId>
|
2017-01-14 18:57:13 +00:00
|
|
|
<version>2.0.3</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Kemitix Checkstyle Ruleset</name>
|
|
|
|
<description>Checkstyle Ruleset for use by packages derived from kemitix-parent</description>
|
|
|
|
|
2017-01-14 18:06:05 +00:00
|
|
|
<properties>
|
|
|
|
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
|
|
|
|
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
|
|
|
|
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
|
|
|
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
2017-01-03 20:08:58 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- plugin sequence: javadoc, sources, gpg, deploy -->
|
|
|
|
<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>verify</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>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-source-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${maven-gpg-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<passphrase>${gpg.passphrase}</passphrase>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin><!-- maven-gpg-plugin -->
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
|
|
|
</plugin><!-- maven deploy-plugin -->
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile><!-- release -->
|
|
|
|
</profiles>
|
|
|
|
</project>
|