Paul Campbell
fb354b9902
* hotfix/4.0.0: tile use tiles ruleset uses UTF-8 encoding Regressions use own checkstyle config Upgrade maven-checkstyle-plugin to 3.0.0 Update checkstyle groupId/artifactId/version in support modules Update travis-support Prevent installation of support modules Run builder during package phase Add local checkstyle plugin config for builder Change ruleset groupId/artifactId to net.kemitix.checkstyle.ruleset Simplify groupId and artifactId under net.kemitix.checkstyle Restore Header and JavadocPackage checks [bug] update the ruleset files and add missing reasons for deactivated rules Version set to 3.4.1
77 lines
2.8 KiB
XML
77 lines
2.8 KiB
XML
<?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-parent</artifactId>
|
|
<version>5.0.3</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>net.kemitix.checkstyle</groupId>
|
|
<artifactId>ruleset</artifactId>
|
|
<version>4.1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Kemitix Checkstyle Ruleset</name>
|
|
<description>A Checkstyle Ruleset</description>
|
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
|
|
|
<properties>
|
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
|
<kemitix-tiles.version>0.2.0</kemitix-tiles.version>
|
|
<maven-resources-plugin.version>3.0.2</maven-resources-plugin.version>
|
|
</properties>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The MIT License (MIT)</name>
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Paul Campbell</name>
|
|
<email>pcampbell@kemitix.net</email>
|
|
<organization>Kemitix</organization>
|
|
<organizationUrl>https://github.com/kemitix/</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</connection>
|
|
<developerConnection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</developerConnection>
|
|
<url>git@github.com:kemitix/kemitix-checkstyle-ruleset.git</url>
|
|
</scm>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.repaint.maven</groupId>
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<tiles>
|
|
<tile>net.kemitix.tiles:maven-plugins-tile:${kemitix-tiles.version}</tile>
|
|
<tile>net.kemitix.tiles:enforcer-tile:${kemitix-tiles.version}</tile>
|
|
<tile>net.kemitix.tiles:release-tile:${kemitix-tiles.version}</tile>
|
|
</tiles>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>${maven-resources-plugin.version}</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|