From e547d13ef4d168a6a2400c76d31bee825b27c3e3 Mon Sep 17 00:00:00 2001
From: James Shiell
Date: Sun, 5 Jun 2016 13:41:59 +0100
Subject: [PATCH] Updated to Checkstyle 6.19
---
CheckStyle-IDEA.iml | 2 +-
CheckStyle-IDEA.ipr | 4 ++--
README.md | 3 ++-
bin/get-checkstyle-artefact | 4 ++--
build.gradle | 4 ++--
src/main/resources/META-INF/plugin.xml | 7 ++++---
6 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/CheckStyle-IDEA.iml b/CheckStyle-IDEA.iml
index 27b70c07..872733b1 100644
--- a/CheckStyle-IDEA.iml
+++ b/CheckStyle-IDEA.iml
@@ -18,6 +18,6 @@
-
+
\ No newline at end of file
diff --git a/CheckStyle-IDEA.ipr b/CheckStyle-IDEA.ipr
index 08345290..e8063c05 100644
--- a/CheckStyle-IDEA.ipr
+++ b/CheckStyle-IDEA.ipr
@@ -274,8 +274,8 @@
-
-
+
+
diff --git a/README.md b/README.md
index 227fb0b5..63b5308d 100644
--- a/README.md
+++ b/README.md
@@ -162,7 +162,8 @@ This code is released under a BSD licence, as specified in the accompanying LICE
## Version History
-* **4.28.2** Fixed: Optional suppression files should no longer generate errors (#231).
+* **4.29.0** New: Updated to CheckStyle 6.19.
+* **4.29.0** Fixed: Optional suppression files should no longer generate errors (#231).
* **4.28.1** Fixed: IllegalStateExceptions from Checkstyle are now treated as parse exceptions (#228).
* **4.28.0** New: Updated to CheckStyle 6.18.
* **4.28.0** Fixed: Relative Header check filenames are now resolved relative to the project file (#227).
diff --git a/bin/get-checkstyle-artefact b/bin/get-checkstyle-artefact
index dbd14314..418523b8 100755
--- a/bin/get-checkstyle-artefact
+++ b/bin/get-checkstyle-artefact
@@ -5,6 +5,6 @@
#
# (This seems fixed in 14.1, but :paranoia:)
-CHECKSTYLE_VERSION=6.18
+CHECKSTYLE_VERSION=6.19
-mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:get -DrepoUrl=http://http://repo2.maven.org/maven2/com/puppycrawl/tools/ -Dartifact=com.puppycrawl.tools:checkstyle:$CHECKSTYLE_VERSION
+mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:get -DrepoUrl=http://http://repo2.maven.org/maven2/com/puppycrawl/tools/ -Dartifact=com.puppycrawl.tools:checkstyle:${CHECKSTYLE_VERSION}
diff --git a/build.gradle b/build.gradle
index 0828ff76..108f982d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -12,7 +12,7 @@ intellij {
}
sourceCompatibility = 1.8
-version = '4.28.2'
+version = '4.29.0'
task wrapper(type: Wrapper) {
gradleVersion = '2.13'
@@ -23,7 +23,7 @@ repositories {
}
dependencies {
- compile(group: 'com.puppycrawl.tools', name: 'checkstyle', version: '6.18') {
+ compile(group: 'com.puppycrawl.tools', name: 'checkstyle', version: '6.19') {
exclude group: 'commons-logging', module: 'commons-logging'
}
compile group: 'commons-io', name: 'commons-io', version: '2.4'
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index f4ad1276..dae6ea3f 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -6,11 +6,11 @@
This plugin provides both real-time and on-demand scanning
- of Java files with CheckStyle 6.18 from within IDEA.
+ of Java files with CheckStyle 6.19 from within IDEA.
]]>
- 4.28.2
+ 4.29.0
James Shiell
@@ -19,7 +19,8 @@
- 4.28.2: Fixed: Optional suppression files should no longer generate errors (#231).
+ 4.29.0: New: Updated to CheckStyle 6.19.
+ 4.29.0: Fixed: Optional suppression files should no longer generate errors (#231).
4.28.1: Fixed: IllegalStateExceptions from Checkstyle are now treated as parse exceptions (#228).
4.28.0: New: Updated to CheckStyle 6.18.
4.28.0: Fixed: Relative Header check filenames are now resolved relative to the project file (#227).