2018-01-16 22:23: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">
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2020-03-17 10:56:19 +00:00
|
|
|
<version>5.3.0</version>
|
2018-01-16 22:23:33 +00:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>net.kemitix.checkstyle</groupId>
|
|
|
|
<artifactId>tile</artifactId>
|
2018-07-07 12:43:04 +01:00
|
|
|
<version>DEV-SNAPSHOT</version>
|
2018-01-16 22:23:33 +00:00
|
|
|
|
|
|
|
<packaging>tile</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2020-03-17 11:03:03 +00:00
|
|
|
<tiles-maven-plugin.version>2.16</tiles-maven-plugin.version>
|
2019-02-02 19:12:33 +00:00
|
|
|
<kemitix-maven-tiles.version>0.8.1</kemitix-maven-tiles.version>
|
2018-08-27 09:02:57 +01:00
|
|
|
|
2020-03-17 10:59:31 +00:00
|
|
|
<maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version>
|
2020-03-18 05:15:34 +00:00
|
|
|
<checkstyle.version>8.30</checkstyle.version>
|
2019-07-20 11:30:25 +01:00
|
|
|
<sevntu.version>1.35.0</sevntu.version>
|
2018-08-27 09:02:57 +01:00
|
|
|
|
2018-11-17 18:22:46 +00:00
|
|
|
<kemitix.checkstyle.ruleset.version>${project.version}</kemitix.checkstyle.ruleset.version>
|
2018-08-27 09:02:57 +01:00
|
|
|
<kemitix.checkstyle.ruleset.level>5-complexity</kemitix.checkstyle.ruleset.level>
|
|
|
|
<kemitix.checkstyle.ruleset.location>net/kemitix/checkstyle-${kemitix.checkstyle.ruleset.level}.xml</kemitix.checkstyle.ruleset.location>
|
2018-01-16 22:23:33 +00:00
|
|
|
</properties>
|
|
|
|
|
2018-08-27 09:02:57 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
<version>${checkstyle.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>${maven-checkstyle-plugin.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
|
|
|
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
|
|
|
|
<version>${sevntu.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix.checkstyle</groupId>
|
2018-08-27 09:18:18 +01:00
|
|
|
<artifactId>ruleset</artifactId>
|
2018-08-27 09:02:57 +01:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2018-01-16 22:23:33 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
2018-01-17 19:53:58 +00:00
|
|
|
<configuration>
|
2018-08-27 09:02:57 +01:00
|
|
|
<filtering>true</filtering>
|
2018-01-17 19:53:58 +00:00
|
|
|
<tiles>
|
2019-02-02 19:12:33 +00:00
|
|
|
<tile>net.kemitix.tiles:maven-plugins:${kemitix-maven-tiles.version}</tile>
|
2018-01-17 19:53:58 +00:00
|
|
|
</tiles>
|
|
|
|
</configuration>
|
2018-01-16 22:23:33 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|