From 89c9c761fcea20e73250eba4f37c904eec2879e8 Mon Sep 17 00:00:00 2001 From: James Shiell Date: Sat, 30 Jan 2016 11:40:35 +0000 Subject: [PATCH] Release preperations; tools.jar is now available to tests --- README.md | 4 +++- build.gradle | 4 +++- src/main/resources/META-INF/plugin.xml | 3 ++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b14bc976..16bd9c03 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: @@ -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). diff --git a/build.gradle b/build.gradle index e9300b8b..b9213c67 100644 --- a/build.gradle +++ b/build.gradle @@ -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' @@ -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 { diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 9b3ff3fc..f0fb57b4 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -10,7 +10,7 @@

]]> - 4.23.0 + 4.24.0 James Shiell @@ -19,6 +19,7 @@ +
  • 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).