From d2b2aa08d9566d5f611f653ebe28605f747f7e55 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 31 May 2016 14:44:46 +0100 Subject: [PATCH 01/13] pom.xml: version set to 1.3.0-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf0b4ef..f649b0d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.kemitix kemitix-parent - 1.2.0 + 1.3.0-SNAPSHOT pom Kemitix Parent From bf9eaaa85a55e4092b30b76ae5bd7a6bc0a0bd50 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 7 Jun 2016 23:22:36 +0100 Subject: [PATCH 02/13] Remove rules that aren't compatible with code style or with lombok --- checkstyle.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/checkstyle.xml b/checkstyle.xml index 3eea98b..9d107cc 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -28,7 +28,6 @@ - @@ -69,7 +68,6 @@ - @@ -81,7 +79,6 @@ - From 86a63bd613eafd5f63701f026319d49a02839a79 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 10 Jun 2016 09:33:45 +0100 Subject: [PATCH 03/13] .gitignore: apply a common standard gitignore to use as template --- .gitignore | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a6f89c2..4ea327c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,48 @@ -/target/ \ No newline at end of file +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# maven build outputs +target/ + +# netbeans legacy +nbproject/ +nbactions.xml + +# eclipse legacy +.project + +# intellij +.idea/libraries/ +.idea/workspace.xml +.idea/uiDesigner.xml +.idea/compiler.xml +.idea/misc.xml +.idea/checkstyle.xml +.idea/artifacts/ +.idea/dataSources* +.idea/tasks.xml +.idea/dictionaries/ +.idea/shelf/ +.idea/dynamic.xml +.idea/sqlDataSources.xml +.idea/gradle.xml +.idea/mongoSettings.xml + +# Spring +spring.log +logs/ +/application.properties +/bootstrap.properties + +# Composer-style +vendor + +# Git and temp files +*.orig +*.patch +*~ From da1b84194f889e1ae3ebe38f05f91aaadf07e804 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 10:32:46 +0100 Subject: [PATCH 04/13] .gitignore: ignore zip files in template --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4ea327c..4d3263f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.jar *.war *.ear +*.zip # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* From 9a4995afe5395a82284ea40b66375466cb88e226 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 10:35:21 +0100 Subject: [PATCH 05/13] Upgrade maven-javadoc-plugin to 2.10.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f649b0d..de23d66 100644 --- a/pom.xml +++ b/pom.xml @@ -41,7 +41,7 @@ UTF-8 target - 2.10.3 + 2.10.4 3.0.0 1.6 2.8.2 From b5e177afdd7eeb26fafb198d5539dad21e876f46 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 10:36:34 +0100 Subject: [PATCH 06/13] Upgrade jacoco-maven-plugin to 0.7.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index de23d66..368133f 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 2.19.1 3.6 3.0.3 - 0.7.6.201602180812 + 0.7.7.201606060606 1.2 2.9 2.5 From 7fbbc460740dc6e96b794ff3c9a3fcdfa1e43483 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 12:36:13 +0100 Subject: [PATCH 07/13] Upgrade sevntu-checkstyle to 1.21.0 Release Notes: http://sevntu-checkstyle.github.io/sevntu.checkstyle/#1.21.0 * new UniformEnumValueCheck - Check forces enum values to match one of the specified patterns and forces all the values to follow only one of the specified patterns. * new javadoc for all Checks - Fix all javadoc problems in sevntu-checks project. * update for ConstructorWithoutParamsCheck - Udpdate the default config in ConstructorWithoutParamsCheck. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 368133f..9e6c4df 100644 --- a/pom.xml +++ b/pom.xml @@ -47,7 +47,7 @@ 2.8.2 2.17 6.19 - 1.20.0 + 1.21.0 3.5.1 2.19.1 2.19.1 From 3ecdf7b5c9bc500bf06b1b57ab2e65abd0a280bc Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 12:38:02 +0100 Subject: [PATCH 08/13] Add sevntu's new UniformEnumValueCheck to checkstyle template --- checkstyle.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/checkstyle.xml b/checkstyle.xml index 9d107cc..1a14b58 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -199,6 +199,7 @@ + From 44b62ae155793befd8a0208ab4686cfe9a6b1c96 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 14:13:36 +0100 Subject: [PATCH 09/13] checkstyle: use correct name for check The name of the check in the sevntu release notes is wrong. --- checkstyle.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkstyle.xml b/checkstyle.xml index 1a14b58..2287f64 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -199,7 +199,7 @@ - + From 5a9871cd70ba8c3470bdfccaaa8ccce6dfd15436 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 27 Jun 2016 15:51:08 +0100 Subject: [PATCH 10/13] pom.xml: upgrade maven-source-plugin to 3.0.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e6c4df..dd00ae1 100644 --- a/pom.xml +++ b/pom.xml @@ -42,7 +42,7 @@ target 2.10.4 - 3.0.0 + 3.0.1 1.6 2.8.2 2.17 From 5d2aa53ce8ae16d53fa754a845b1933680770093 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 28 Jun 2016 09:36:20 +0100 Subject: [PATCH 11/13] Upgrade checkstyle to 7.0 * http://checkstyle.sourceforge.net/releasenotes.html#Release_7.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dd00ae1..4474a1c 100644 --- a/pom.xml +++ b/pom.xml @@ -46,7 +46,7 @@ 1.6 2.8.2 2.17 - 6.19 + 7.0 1.21.0 3.5.1 2.19.1 From 3c6f02f8dcee505fec54b73f9b1be84b2e15c308 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 28 Jun 2016 09:55:33 +0100 Subject: [PATCH 12/13] pom.xml: version set to 1.3.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4474a1c..e86de6b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.kemitix kemitix-parent - 1.3.0-SNAPSHOT + 1.3.0 pom Kemitix Parent From 81089c3bb3608f33046a1c5e4a015ee3a6600925 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 28 Jun 2016 09:55:33 +0100 Subject: [PATCH 13/13] CHANGELOG --- CHANGELOG | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index d9d4c2c..285bba6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,18 @@ CHANGELOG ========= +1.3.0 +------ + +* Upgrade checkstyle to 7.0 +* Upgrade maven-source-plugin to 3.0.1 +* Upgrade sevntucheckstyle to 1.21.0 +* Upgrade maven-javadoc-plugin to 2.10.4 +* Upgrade jacoco-maven-plugin to 0.7.7 +* checkstyle.xml: Remove rules from that aren't compatible with code style or with lombok +* checkstyle.xml: Add sevntu's new UniformEnumValueCheck to checkstyle template +* .gitignore: apply a common standard gitignore to use as template + 1.2.0 ------