From 18f26003d8945357dc370d45c3a97ac0c54322bf Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 28 Jun 2016 09:55:35 +0100 Subject: [PATCH 1/6] pom.xml: version set to 1.4.0-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e86de6b..8c11ef3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.kemitix kemitix-parent - 1.3.0 + 1.4.0-SNAPSHOT pom Kemitix Parent From ab39ae07ea4e4049a00c0c5d155b74fe7a5ee0d0 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 2 Jul 2016 15:01:44 +0100 Subject: [PATCH 2/6] .gitignore: ignore checkstyle and findbugs plugin configurations --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 4d3263f..7933d63 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,8 @@ nbactions.xml .idea/sqlDataSources.xml .idea/gradle.xml .idea/mongoSettings.xml +.idea/checkstyle-idea.xml +.idea/findbugs-idea.xml # Spring spring.log From 787a65bc096c4a0f05ec7174c1ad15634fa84bdf Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 18 Jul 2016 18:42:16 +0100 Subject: [PATCH 3/6] .idea: add IntelliJ IDE project files --- .idea/copyright/profiles_settings.xml | 3 +++ .idea/encodings.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ kemitix-parent.iml | 12 ++++++++++++ 5 files changed, 35 insertions(+) create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 kemitix-parent.iml diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..b26911b --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ac56e84 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/kemitix-parent.iml b/kemitix-parent.iml new file mode 100644 index 0000000..9e16274 --- /dev/null +++ b/kemitix-parent.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file From 230a2b6d1f3d8430ab4728f9f53d5d107d301acf Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 18 Jul 2016 18:56:10 +0100 Subject: [PATCH 4/6] pom.xml: upgrade findbugs-maven-plugin to 3.0.4 Required for Maven 3.4 compatibility. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c11ef3..7fc35c6 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ 2.19.1 2.19.1 3.6 - 3.0.3 + 3.0.4 0.7.7.201606060606 1.2 2.9 From 71221ebb62f60e284a5992bac108b96c0883fd89 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 26 Jul 2016 10:55:26 +0100 Subject: [PATCH 5/6] pom.xml: version set to 1.4.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7fc35c6..70fd6ba 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.kemitix kemitix-parent - 1.4.0-SNAPSHOT + 1.4.0 pom Kemitix Parent From 89dc4834ec7a2f29039ead4ee61859042d488bfd Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 26 Jul 2016 10:55:26 +0100 Subject: [PATCH 6/6] CHANGELOG --- CHANGELOG | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 285bba6..1fd679d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,11 @@ CHANGELOG ========= +1.4.0 +------ + +* Upgrade findbugs-maven-plugin to 3.0.4 + 1.3.0 ------