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>
|
2021-07-01 08:44:40 +01:00
|
|
|
<version>5.5.1</version>
|
2018-01-16 22:23:33 +00:00
|
|
|
|
|
|
|
<packaging>tile</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2021-06-30 21:47:58 +01:00
|
|
|
<tiles-maven-plugin.version>2.23</tiles-maven-plugin.version>
|
2021-08-08 07:30:26 +01:00
|
|
|
<kemitix-maven-tiles.version>3.1.1</kemitix-maven-tiles.version>
|
2018-08-27 09:02:57 +01:00
|
|
|
|
2021-02-01 05:25:18 +00:00
|
|
|
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
|
2021-06-30 08:51:44 +01:00
|
|
|
<checkstyle.version>8.44</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>
|
2021-06-30 21:47:58 +01:00
|
|
|
<dependency>
|
|
|
|
<artifactId>version-tracker</artifactId>
|
|
|
|
<groupId>net.kemitix.tiles</groupId>
|
|
|
|
<version>${kemitix-maven-tiles.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-08-27 09:02:57 +01:00
|
|
|
</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>
|