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>
|
2020-03-17 10:56:19 +00:00
|
|
|
<version>5.3.0</version>
|
2018-01-07 19:29:36 +00:00
|
|
|
<relativePath/>
|
2017-01-03 20:08:58 +00:00
|
|
|
</parent>
|
|
|
|
|
2018-01-07 19:29:36 +00:00
|
|
|
<groupId>net.kemitix.checkstyle</groupId>
|
2018-01-16 17:38:36 +00:00
|
|
|
<artifactId>builder</artifactId>
|
2017-01-03 20:08:58 +00:00
|
|
|
<packaging>jar</packaging>
|
2021-08-08 07:43:14 +01:00
|
|
|
<version>5.5.2</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
|
2018-01-07 19:29:36 +00:00
|
|
|
<properties>
|
2018-01-16 22:36:27 +00:00
|
|
|
<maven.install.skip>true</maven.install.skip>
|
2020-07-11 12:05:50 +01:00
|
|
|
<java.version>11</java.version>
|
2020-03-18 12:32:30 +00:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
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>
|
2017-01-04 20:30:20 +00:00
|
|
|
|
2021-08-09 07:16:33 +01:00
|
|
|
<checkstyle.version>8.45.1</checkstyle.version>
|
2021-06-30 06:55:35 +01:00
|
|
|
<sevntu.version>1.40.0</sevntu.version>
|
2020-03-18 12:32:30 +00:00
|
|
|
<sevntu-plugin.version>1.35.0</sevntu-plugin.version>
|
2021-04-02 06:18:00 +01:00
|
|
|
<lombok.version>1.18.20</lombok.version>
|
2018-01-07 19:29:36 +00:00
|
|
|
<spring-platform.version>Brussels-SR6</spring-platform.version>
|
2022-10-10 14:30:26 +01:00
|
|
|
<spring-boot.version>2.7.4</spring-boot.version>
|
2020-08-31 06:31:18 +01:00
|
|
|
<mapstream.version>3.2.10</mapstream.version>
|
2018-01-07 19:29:36 +00:00
|
|
|
<map-builder.version>1.0.0</map-builder.version>
|
2022-10-10 14:35:27 +01:00
|
|
|
<mockito.version>4.8.0</mockito.version>
|
2021-07-01 07:01:30 +01:00
|
|
|
<assertj.version>3.20.2</assertj.version>
|
2022-10-10 14:35:40 +01:00
|
|
|
<classgraph.version>4.8.149</classgraph.version>
|
2018-01-16 22:24:23 +00:00
|
|
|
|
2021-02-01 05:25:18 +00:00
|
|
|
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
|
2018-01-17 18:41:42 +00:00
|
|
|
<kemitix.checkstyle.ruleset.version>${project.version}</kemitix.checkstyle.ruleset.version>
|
2018-01-16 22:24:23 +00: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-07-07 13:02:13 +01:00
|
|
|
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
|
2020-03-29 12:19:00 +01:00
|
|
|
<file-reader-writer.version>1.0.0</file-reader-writer.version>
|
2018-01-07 19:29:36 +00:00
|
|
|
</properties>
|
2017-01-06 22:37:24 +00:00
|
|
|
|
2018-01-07 19:29:36 +00:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-07-07 13:31:53 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
2018-01-07 19:29:36 +00:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2017-01-06 22:37:24 +00:00
|
|
|
|
2017-01-04 20:30:20 +00:00
|
|
|
<dependencies>
|
2018-01-03 20:26:36 +00:00
|
|
|
<dependency>
|
2020-03-29 12:19:00 +01:00
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>file-reader-writer</artifactId>
|
|
|
|
<version>${file-reader-writer.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-01-03 20:26:36 +00:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2018-01-07 19:29:36 +00:00
|
|
|
<version>${lombok.version}</version>
|
2018-01-24 21:55:14 +00:00
|
|
|
<scope>provided</scope>
|
2018-01-07 19:29:36 +00:00
|
|
|
</dependency>
|
2018-03-10 23:39:59 +00:00
|
|
|
<dependency>
|
2018-08-26 20:18:35 +01:00
|
|
|
<groupId>io.github.classgraph</groupId>
|
|
|
|
<artifactId>classgraph</artifactId>
|
|
|
|
<version>${classgraph.version}</version>
|
2018-03-10 23:39:59 +00:00
|
|
|
</dependency>
|
2018-01-07 19:29:36 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
2018-01-03 20:26:36 +00:00
|
|
|
</dependency>
|
2017-01-04 20:30:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-01-24 07:04:45 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
<version>${javax.annotation-api.version}</version>
|
|
|
|
</dependency>
|
2017-01-04 20:30:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-01-05 07:01:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.speedment.common</groupId>
|
|
|
|
<artifactId>mapstream</artifactId>
|
2018-01-07 19:29:36 +00:00
|
|
|
<version>${mapstream.version}</version>
|
2017-01-05 07:01:27 +00:00
|
|
|
</dependency>
|
2017-01-06 21:50:00 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.andrz</groupId>
|
|
|
|
<artifactId>map-builder</artifactId>
|
2018-01-07 19:29:36 +00:00
|
|
|
<version>${map-builder.version}</version>
|
2017-01-06 21:50:00 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-05-29 23:55:42 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2018-01-07 19:29:36 +00:00
|
|
|
<version>${checkstyle.version}</version>
|
2017-05-29 23:55:42 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
|
|
|
<artifactId>sevntu-checks</artifactId>
|
2018-01-07 19:29:36 +00:00
|
|
|
<version>${sevntu.version}</version>
|
2017-05-29 23:55:42 +01:00
|
|
|
</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>
|
2017-01-04 20:30:20 +00:00
|
|
|
</dependencies>
|
2017-06-17 08:29:05 +01:00
|
|
|
|
2017-01-06 15:49:11 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-01-03 20:35:06 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<tiles>
|
2021-03-13 17:34:51 +00:00
|
|
|
<tile>net.kemitix.tiles:maven-plugins:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:compiler-jdk-lts:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pmd:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:testing:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:spotbugs:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<!-- <tile>net.kemitix.tiles:coverage:${kemitix-maven-tiles.version}</tile>-->
|
|
|
|
<tile>net.kemitix.tiles:pitest:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pmd-strict:${kemitix-maven-tiles.version}</tile>
|
2018-01-03 20:35:06 +00:00
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-01-06 15:49:11 +00:00
|
|
|
<plugin>
|
2017-01-06 22:37:24 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
2017-01-13 19:34:51 +00:00
|
|
|
<configuration>
|
|
|
|
<executable>true</executable>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2018-01-16 22:28:07 +00:00
|
|
|
<phase>package</phase>
|
2017-01-13 19:34:51 +00:00
|
|
|
<goals>
|
2018-01-16 22:28:07 +00:00
|
|
|
<goal>run</goal>
|
2017-01-13 19:34:51 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2017-01-06 22:37:24 +00:00
|
|
|
</plugin>
|
2018-01-16 22:24:23 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>${maven-checkstyle-plugin.version}</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
<version>${checkstyle.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
|
|
|
<artifactId>sevntu-checkstyle-maven-plugin</artifactId>
|
2020-03-18 12:32:30 +00:00
|
|
|
<version>${sevntu-plugin.version}</version>
|
2018-01-16 22:24:23 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-01-17 18:41:42 +00:00
|
|
|
<groupId>net.kemitix.checkstyle</groupId>
|
|
|
|
<artifactId>ruleset</artifactId>
|
2018-01-16 22:24:23 +00:00
|
|
|
<version>${kemitix.checkstyle.ruleset.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>${kemitix.checkstyle.ruleset.location}</configLocation>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-01-06 15:49:11 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-01-03 20:08:58 +00:00
|
|
|
</project>
|