Skip to content

Commit

Permalink
Updated to Checkstyle 6.19
Browse files Browse the repository at this point in the history
  • Loading branch information
jshiell committed Jun 5, 2016
1 parent 783518c commit e547d13
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CheckStyle-IDEA.iml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="commons-io:commons-io:2.4" level="project" />
<orderEntry type="library" name="com.puppycrawl.tools:checkstyle:6.18" level="project" />
<orderEntry type="library" name="com.puppycrawl.tools:checkstyle:6.19" level="project" />
</component>
</module>
4 changes: 2 additions & 2 deletions CheckStyle-IDEA.ipr
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@
<find-history />
</component>
<component name="libraryTable">
<library name="com.puppycrawl.tools:checkstyle:6.18" type="repository">
<properties maven-id="com.puppycrawl.tools:checkstyle:6.18" />
<library name="com.puppycrawl.tools:checkstyle:6.19" type="repository">
<properties maven-id="com.puppycrawl.tools:checkstyle:6.19" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/com/puppycrawl/tools/checkstyle/6.18/checkstyle-6.18.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/antlr/antlr/2.7.7/antlr-2.7.7.jar!/" />
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
4 changes: 2 additions & 2 deletions bin/get-checkstyle-artefact
Original file line number Diff line number Diff line change
Expand Up @@ -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}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ intellij {
}

sourceCompatibility = 1.8
version = '4.28.2'
version = '4.29.0'

task wrapper(type: Wrapper) {
gradleVersion = '2.13'
Expand All @@ -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'
Expand Down
7 changes: 4 additions & 3 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<![CDATA[
<p>
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.
</p>
]]>
</description>
<version>4.28.2</version>
<version>4.29.0</version>
<idea-version since-build="141.178"/>
<vendor url="https://infernus.org/" email="james@infernus.org">James Shiell</vendor>

Expand All @@ -19,7 +19,8 @@
<change-notes>
<![CDATA[
<ul>
<li>4.28.2: Fixed: Optional suppression files should no longer generate errors (#231).</li>
<li>4.29.0: New: Updated to CheckStyle 6.19.</li>
<li>4.29.0: Fixed: Optional suppression files should no longer generate errors (#231).</li>
<li>4.28.1: Fixed: IllegalStateExceptions from Checkstyle are now treated as parse exceptions (#228).</li>
<li>4.28.0: New: Updated to CheckStyle 6.18.</li>
<li>4.28.0: Fixed: Relative Header check filenames are now resolved relative to the project file (#227).</li>
Expand Down

0 comments on commit e547d13

Please sign in to comment.