commit
78a250b40c
2 changed files with 29 additions and 5 deletions
|
@ -1,6 +1,15 @@
|
|||
CHANGELOG
|
||||
=========
|
||||
|
||||
2.2.0
|
||||
-----
|
||||
|
||||
* Add huntbugs 0.0.11
|
||||
* Upgrade checkstyle to 7.2
|
||||
* Upgrade sevntu-checkstyle to 1.22.0
|
||||
* Upgrade maven-compiler-plugin to 3.6.0
|
||||
* Upgrade maven-pmd-plugin to 3.7
|
||||
|
||||
2.1.0
|
||||
------
|
||||
|
||||
|
|
25
pom.xml
25
pom.xml
|
@ -4,7 +4,7 @@
|
|||
|
||||
<groupId>net.kemitix</groupId>
|
||||
<artifactId>kemitix-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.2.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Kemitix Parent</name>
|
||||
|
@ -47,13 +47,14 @@
|
|||
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
||||
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
||||
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
|
||||
<checkstyle.version>7.1.1</checkstyle.version>
|
||||
<sevntu-checkstyle-maven-plugin.version>1.21.0</sevntu-checkstyle-maven-plugin.version>
|
||||
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
|
||||
<checkstyle.version>7.2</checkstyle.version>
|
||||
<sevntu-checkstyle-maven-plugin.version>1.22.0</sevntu-checkstyle-maven-plugin.version>
|
||||
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
||||
<maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version>
|
||||
<maven-pmd-plugin.version>3.6</maven-pmd-plugin.version>
|
||||
<maven-pmd-plugin.version>3.7</maven-pmd-plugin.version>
|
||||
<findbugs-maven-plugin.version>3.0.4</findbugs-maven-plugin.version>
|
||||
<huntbugs.version>0.0.11</huntbugs.version>
|
||||
<jacoco-maven-plugin.version>0.7.7.201606060606</jacoco-maven-plugin.version>
|
||||
<highwheel-maven.version>1.2</highwheel-maven.version>
|
||||
<maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version>
|
||||
|
@ -276,6 +277,20 @@
|
|||
</executions>
|
||||
</plugin><!-- findbugs-maven-plugin -->
|
||||
|
||||
<plugin>
|
||||
<groupId>one.util</groupId>
|
||||
<artifactId>huntbugs-maven-plugin</artifactId>
|
||||
<version>${huntbugs.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>huntbugs</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin><!-- huntbugs-maven-plugin -->
|
||||
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
|
|
Loading…
Reference in a new issue