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>
|
2018-01-07 19:29:36 +00:00
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2018-10-08 18:58:38 +01:00
|
|
|
<version>5.2.0</version>
|
2018-01-07 19:29:36 +00:00
|
|
|
<relativePath/>
|
2017-01-03 20:08:58 +00:00
|
|
|
</parent>
|
|
|
|
|
2018-01-16 17:38:36 +00:00
|
|
|
<groupId>net.kemitix.checkstyle</groupId>
|
|
|
|
<artifactId>ruleset</artifactId>
|
2018-10-21 18:30:07 +01:00
|
|
|
<version>5.1.1</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2018-01-07 19:29:36 +00:00
|
|
|
<name>Kemitix Checkstyle Ruleset</name>
|
|
|
|
<description>A Checkstyle Ruleset</description>
|
|
|
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
|
|
|
|
|
|
|
<properties>
|
2018-08-23 15:07:09 +01:00
|
|
|
<tiles-maven-plugin.version>2.12</tiles-maven-plugin.version>
|
2018-07-07 13:36:16 +01:00
|
|
|
<kemitix-tiles.version>0.9.0</kemitix-tiles.version>
|
2018-01-07 19:29:36 +00:00
|
|
|
</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>
|
2017-01-03 20:08:58 +00:00
|
|
|
|
2018-01-03 20:30:04 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<tiles>
|
2018-04-19 07:20:36 +01:00
|
|
|
<tile>net.kemitix.tiles:maven-plugins:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:enforcer:${kemitix-tiles.version}</tile>
|
2018-01-03 20:30:04 +00:00
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-01-07 19:29:36 +00:00
|
|
|
|
2017-01-03 20:08:58 +00:00
|
|
|
</project>
|