2018-02-19 23:03:33 +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-parent</artifactId>
|
2018-03-07 20:10:02 +00:00
|
|
|
<version>5.1.0</version>
|
2018-02-19 23:03:33 +00:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-pmd-ruleset</artifactId>
|
2018-03-07 20:09:42 +00:00
|
|
|
<version>0.2.1</version>
|
2018-02-19 23:03:33 +00:00
|
|
|
|
|
|
|
<name>Kemitix PMD Ruleset</name>
|
2018-02-20 20:56:15 +00:00
|
|
|
<description>Kemitix PMD Ruleset for Java</description>
|
2018-02-19 23:03:33 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
|
|
|
<kemitix-tiles.version>0.4.1</kemitix-tiles.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:enforcer-legacy:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:release:${kemitix-tiles.version}</tile>
|
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|