Make modules independant of root pom
* Revert kemitix-maven-tiles to 0.1.1 until release * Move pom details from root to ruleset pom
This commit is contained in:
parent
1c714e4b53
commit
e8452d8c19
4 changed files with 103 additions and 146 deletions
|
@ -6,36 +6,59 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.kemitix</groupId>
|
<groupId>net.kemitix</groupId>
|
||||||
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
<artifactId>kemitix-parent</artifactId>
|
||||||
<version>3.4.0-SNAPSHOT</version>
|
<version>5.0.3</version>
|
||||||
|
<relativePath/>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kemitix-checkstyle-ruleset-builder</artifactId>
|
<groupId>net.kemitix.checkstyle</groupId>
|
||||||
|
<artifactId>ruleset-builder</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
<version>3.4.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>Kemitix Checkstyle :: Ruleset :: Builder</name>
|
<properties>
|
||||||
<description>Builder for the Kemitix Checkstyle Ruleset</description>
|
<java.version>1.8</java.version>
|
||||||
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
||||||
|
<kemitix-tiles.version>0.1.1</kemitix-tiles.version>
|
||||||
|
|
||||||
<issueManagement>
|
<checkstyle.version>8.7</checkstyle.version>
|
||||||
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset/issues</url>
|
<sevntu.version>1.26.0</sevntu.version>
|
||||||
<system>GitHub Issues</system>
|
<lombok.version>1.16.18</lombok.version>
|
||||||
</issueManagement>
|
<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>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<scm>
|
<dependencyManagement>
|
||||||
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
<dependencies>
|
||||||
<connection>scm:git:git://github.com/kemitix/kemitix-checkstyle-ruleset.git</connection>
|
<dependency>
|
||||||
<developerConnection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</developerConnection>
|
<groupId>io.spring.platform</groupId>
|
||||||
</scm>
|
<artifactId>platform-bom</artifactId>
|
||||||
|
<version>${spring-platform.version}</version>
|
||||||
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
<inceptionYear>2016</inceptionYear>
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
<scope>provided</scope>
|
<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>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -59,6 +82,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.speedment.common</groupId>
|
<groupId>com.speedment.common</groupId>
|
||||||
<artifactId>mapstream</artifactId>
|
<artifactId>mapstream</artifactId>
|
||||||
|
<version>${mapstream.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -68,16 +92,19 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>me.andrz</groupId>
|
<groupId>me.andrz</groupId>
|
||||||
<artifactId>map-builder</artifactId>
|
<artifactId>map-builder</artifactId>
|
||||||
|
<version>${map-builder.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.puppycrawl.tools</groupId>
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
<artifactId>checkstyle</artifactId>
|
<artifactId>checkstyle</artifactId>
|
||||||
|
<version>${checkstyle.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.sevntu-checkstyle</groupId>
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
||||||
<artifactId>sevntu-checks</artifactId>
|
<artifactId>sevntu-checks</artifactId>
|
||||||
|
<version>${sevntu.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
@ -90,7 +117,15 @@
|
||||||
<extensions>true</extensions>
|
<extensions>true</extensions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tiles>
|
<tiles>
|
||||||
<tile>net.kemitix.tiles:all-tiles:${kemitix-tiles.version}</tile>
|
<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:checkstyle-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>
|
||||||
</tiles>
|
</tiles>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -104,18 +139,11 @@
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>
|
<goal>repackage</goal>
|
||||||
repackage
|
|
||||||
</goal>
|
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<groupId>org.eluder.coveralls</groupId>
|
|
||||||
<artifactId>coveralls-maven-plugin</artifactId>
|
|
||||||
<version>${coveralls-maven-plugin.version}</version>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
111
pom.xml
111
pom.xml
|
@ -4,122 +4,15 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>net.kemitix</groupId>
|
<groupId>net.kemitix.checkstyle</groupId>
|
||||||
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
<artifactId>ruleset-root</artifactId>
|
||||||
<version>3.4.0-SNAPSHOT</version>
|
<version>3.4.0-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>Kemitix Checkstyle :: Ruleset :: Parent</name>
|
|
||||||
<description>Parent POM for the Kemitix Checkstyle Ruleset and it's Builder</description>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
|
||||||
<kemitix-tiles.version>0.2.0</kemitix-tiles.version>
|
|
||||||
<java.version>1.8</java.version>
|
|
||||||
|
|
||||||
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
|
|
||||||
<checkstyle.version>8.7</checkstyle.version>
|
|
||||||
<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>
|
|
||||||
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
|
||||||
<immutables-value.version>2.5.6</immutables-value.version>
|
|
||||||
|
|
||||||
<mockito.version>2.13.0</mockito.version>
|
|
||||||
<assertj.version>3.9.0</assertj.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>builder</module>
|
<module>builder</module>
|
||||||
<module>ruleset</module>
|
<module>ruleset</module>
|
||||||
<module>regressions</module>
|
<module>regressions</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<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>
|
|
||||||
|
|
||||||
<inceptionYear>2016</inceptionYear>
|
|
||||||
|
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<name>The MIT License (MIT)</name>
|
|
||||||
<url>https://opensource.org/licenses/MIT</url>
|
|
||||||
</license>
|
|
||||||
</licenses>
|
|
||||||
|
|
||||||
<developers>
|
|
||||||
<developer>
|
|
||||||
<name>Paul Campbell</name>
|
|
||||||
<email>pcampbell@kemitix.net</email>
|
|
||||||
<organization>Kemitix</organization>
|
|
||||||
<organizationUrl>https://github.com/kemitix/</organizationUrl>
|
|
||||||
</developer>
|
|
||||||
</developers>
|
|
||||||
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.puppycrawl.tools</groupId>
|
|
||||||
<artifactId>checkstyle</artifactId>
|
|
||||||
<version>${checkstyle.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.sevntu-checkstyle</groupId>
|
|
||||||
<artifactId>sevntu-checks</artifactId>
|
|
||||||
<version>${sevntu.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.spring.platform</groupId>
|
|
||||||
<artifactId>platform-bom</artifactId>
|
|
||||||
<version>${spring-platform.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.projectlombok</groupId>
|
|
||||||
<artifactId>lombok</artifactId>
|
|
||||||
<version>${lombok.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.speedment.common</groupId>
|
|
||||||
<artifactId>mapstream</artifactId>
|
|
||||||
<version>${mapstream.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>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.andrz</groupId>
|
|
||||||
<artifactId>map-builder</artifactId>
|
|
||||||
<version>${map-builder.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.immutables</groupId>
|
|
||||||
<artifactId>value</artifactId>
|
|
||||||
<version>${immutables-value.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -5,14 +5,19 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.kemitix</groupId>
|
<groupId>net.kemitix</groupId>
|
||||||
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
<artifactId>kemitix-parent</artifactId>
|
||||||
<version>3.4.0-SNAPSHOT</version>
|
<version>5.0.3</version>
|
||||||
|
<relativePath/>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kemitix-checkstyle-ruleset-regressions</artifactId>
|
<groupId>net.kemitix.checkstyle</groupId>
|
||||||
<name>Kemitix Checkstyle :: Ruleset :: Regression Tests</name>
|
<artifactId>ruleset-regressions</artifactId>
|
||||||
|
<version>3.4.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
||||||
|
<kemitix-tiles.version>0.1.1</kemitix-tiles.version>
|
||||||
|
|
||||||
<!-- use the disabled ruleset for normal builds. comment out the following line to check that conditions are caught -->
|
<!-- use the disabled ruleset for normal builds. comment out the following line to check that conditions are caught -->
|
||||||
<ruleset.level>0-disabled</ruleset.level>
|
<ruleset.level>0-disabled</ruleset.level>
|
||||||
<digraph-dependency.basePackage>net.kemitix.checkstyle.regressions</digraph-dependency.basePackage>
|
<digraph-dependency.basePackage>net.kemitix.checkstyle.regressions</digraph-dependency.basePackage>
|
||||||
|
@ -38,7 +43,7 @@
|
||||||
<extensions>true</extensions>
|
<extensions>true</extensions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tiles>
|
<tiles>
|
||||||
<tile>net.kemitix.tiles:all-tiles:${kemitix-tiles.version}</tile>
|
<tile>net.kemitix.tiles:checkstyle-tile:${kemitix-tiles.version}</tile>
|
||||||
</tiles>
|
</tiles>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -6,15 +6,45 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.kemitix</groupId>
|
<groupId>net.kemitix</groupId>
|
||||||
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
<artifactId>kemitix-parent</artifactId>
|
||||||
<version>3.4.0-SNAPSHOT</version>
|
<version>5.0.3</version>
|
||||||
|
<relativePath/>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kemitix-checkstyle-ruleset</artifactId>
|
<artifactId>kemitix-checkstyle-ruleset</artifactId>
|
||||||
|
<version>3.4.0-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>Kemitix Checkstyle :: Ruleset</name>
|
<name>Kemitix Checkstyle Ruleset</name>
|
||||||
<description>Checkstyle Ruleset for use by packages derived from kemitix-parent</description>
|
<description>A Checkstyle Ruleset</description>
|
||||||
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
||||||
|
<kemitix-tiles.version>0.1.1</kemitix-tiles.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The MIT License (MIT)</name>
|
||||||
|
<url>https://opensource.org/licenses/MIT</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Paul Campbell</name>
|
||||||
|
<email>pcampbell@kemitix.net</email>
|
||||||
|
<organization>Kemitix</organization>
|
||||||
|
<organizationUrl>https://github.com/kemitix/</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -33,4 +63,5 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue