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>
|
|
|
|
<version>5.0.3</version>
|
|
|
|
<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>
|
2018-01-16 22:23:33 +00:00
|
|
|
<version>4.0.0</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
|
2018-01-07 19:29:36 +00:00
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
2018-01-07 20:06:08 +00:00
|
|
|
<kemitix-tiles.version>0.2.0</kemitix-tiles.version>
|
2017-01-04 20:30:20 +00:00
|
|
|
|
2018-01-16 22:23:33 +00:00
|
|
|
<checkstyle.version>8.6</checkstyle.version>
|
2018-01-07 19:29:36 +00:00
|
|
|
<sevntu.version>1.26.0</sevntu.version>
|
|
|
|
<lombok.version>1.16.18</lombok.version>
|
|
|
|
<spring-platform.version>Brussels-SR6</spring-platform.version>
|
|
|
|
<spring-boot.version>1.5.9.RELEASE</spring-boot.version>
|
|
|
|
<mapstream.version>2.3.5</mapstream.version>
|
|
|
|
<map-builder.version>1.0.0</map-builder.version>
|
|
|
|
<mockito.version>2.13.0</mockito.version>
|
|
|
|
<assertj.version>3.9.0</assertj.version>
|
2018-01-16 22:24:23 +00:00
|
|
|
|
|
|
|
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
|
|
|
|
<kemitix.checkstyle.ruleset.version>3.4.0</kemitix.checkstyle.ruleset.version>
|
|
|
|
<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-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>
|
|
|
|
<groupId>io.spring.platform</groupId>
|
|
|
|
<artifactId>platform-bom</artifactId>
|
|
|
|
<version>${spring-platform.version}</version>
|
|
|
|
<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>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2018-01-07 19:29:36 +00:00
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<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>
|
|
|
|
<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>
|
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>
|
2018-01-07 19:29:36 +00:00
|
|
|
<tile>net.kemitix.tiles:maven-plugins-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:enforcer-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:compiler-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:huntbugs-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pmd-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:testing-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:coverage-tile:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pitest-tile:${kemitix-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>
|
|
|
|
<goals>
|
2018-01-07 19:29:36 +00:00
|
|
|
<goal>repackage</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>
|
|
|
|
<version>${sevntu.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-checkstyle-ruleset</artifactId>
|
|
|
|
<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>
|