Skip to content

Commit

Permalink
Release preperations; tools.jar is now available to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jshiell committed Jan 30, 2016
1 parent 8cba26c commit 89c9c76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[Hosted on GitHub](https://github.com/jshiell/checkstyle-idea)

A plug-in for JetBrains' IntelliJ IDEA 14.1 which provides real-time feedback against a given [CheckStyle](http://checkstyle.sourceforge.net/) profile by way of an inspection.
A plug-in for JetBrains' IntelliJ IDEA 14.1/15 which provides real-time feedback against a given [CheckStyle](http://checkstyle.sourceforge.net/) profile by way of an inspection.

Released under a BSD-style licence - please see the LICENCE file for details.

Expand Down Expand Up @@ -138,6 +138,7 @@ Thanks to those who have contributed work and effort directly to this project:
* Miel Donkers
* Dmitrij (zherebjatjew)
* Thomas Jensen
* Rustam Vishnyakov (@dyadix)

And also thanks are due to the authors and contributors of:

Expand All @@ -156,6 +157,7 @@ This code is released under a BSD licence, as specified in the accompanying LICE

## Version History

* **4.24.0** New: Added code style importer - thanks to Rustam Vishnyakov (@dyadix).
* **4.23.0** New: Updated to CheckStyle 6.14.1.
* **4.22.2** Fixed: Static scan rewritten to use IDEA's thread pooling and block less on read actions (#11).
* **4.22.1** Fixed: Now treats NPEs and AIOOBEs as parse exceptions (#201, #203).
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'java'

sourceCompatibility = 1.8
version = '4.23.0'
version = '4.24.0'

task wrapper(type: Wrapper) {
gradleVersion = '2.10'
Expand All @@ -26,6 +26,8 @@ dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'

testCompile files("${System.properties['java.home']}/../lib/tools.jar")
}

sourceSets {
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</p>
]]>
</description>
<version>4.23.0</version>
<version>4.24.0</version>
<idea-version since-build="141.178"/>
<vendor url="https://infernus.org/" email="james@infernus.org">James Shiell</vendor>

Expand All @@ -19,6 +19,7 @@
<change-notes>
<![CDATA[
<ul>
<li>4.24.0: New: Added code style importer - thanks to Rustam Vishnyakov (@dyadix).</li>
<li>4.23.0: New: Updated to CheckStyle 6.14.1.</li>
<li>4.22.2: Fixed: Static scan rewritten to use IDEA's thread pooling and block less on read actions (#11).</li>
<li>4.22.1: Fixed: Now treats NPEs and AIOOBEs as parse exceptions (#201, #203).</li>
Expand Down

0 comments on commit 89c9c76

Please sign in to comment.