2016-08-02 19:51:59 +01: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>
|
2017-06-09 19:22:13 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
2016-08-02 19:51:59 +01:00
|
|
|
|
2017-01-03 20:08:58 +00:00
|
|
|
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
2017-06-12 09:48:06 +01:00
|
|
|
<version>3.2.0</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
<packaging>pom</packaging>
|
2016-08-02 19:51:59 +01:00
|
|
|
|
2017-06-02 19:26:52 +01:00
|
|
|
<name>Kemitix Checkstyle :: Ruleset :: Parent</name>
|
2017-01-03 20:08:58 +00:00
|
|
|
<description>Parent POM for the Kemitix Checkstyle Ruleset and it's Builder</description>
|
|
|
|
|
2017-01-13 19:32:36 +00:00
|
|
|
<properties>
|
2017-02-26 14:39:10 +00:00
|
|
|
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
|
2017-05-29 09:34:18 +01:00
|
|
|
<checkstyle.version>7.8</checkstyle.version>
|
2017-05-28 18:29:46 +01:00
|
|
|
<sevntu.version>1.24.0</sevntu.version>
|
2017-06-09 19:22:13 +01:00
|
|
|
|
2017-05-26 15:42:02 +01:00
|
|
|
<mockito.version>1.10.19</mockito.version>
|
|
|
|
<assertj.version>3.8.0</assertj.version>
|
2017-01-13 19:32:36 +00:00
|
|
|
</properties>
|
|
|
|
|
2017-01-03 20:08:58 +00:00
|
|
|
<modules>
|
|
|
|
<module>builder</module>
|
|
|
|
<module>ruleset</module>
|
2017-01-13 19:36:07 +00:00
|
|
|
<module>plugin</module>
|
2017-04-02 13:32:00 +01:00
|
|
|
<module>regressions</module>
|
2017-01-03 20:08:58 +00:00
|
|
|
</modules>
|
2016-08-02 19:51:59 +01:00
|
|
|
|
2016-08-16 18:52:31 +01:00
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</developerConnection>
|
|
|
|
<url>git@github.com:kemitix/kemitix-checkstyle-ruleset.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
|
|
|
|
2016-08-02 19:51:59 +01:00
|
|
|
<inceptionYear>2016</inceptionYear>
|
|
|
|
|
2017-05-26 15:42:02 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<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>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2016-09-11 14:59:32 +01:00
|
|
|
</project>
|