File tree Expand file tree Collapse file tree 3 files changed +15
-11
lines changed
Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 33# PMDPlugin Changelog
44
55## [ Unreleased]
6+ ### Added
7+ - Update to PMD version 6.47.0
8+ - Support for sorting violations by severity
9+
610## [ 1.8.22]
711### Added
812- Update to PMD version 6.44.0
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
33
44fun properties (key : String ) = project.findProperty(key).toString()
55
6- val pmdVersion = " 6.44 .0"
6+ val pmdVersion = " 6.47 .0"
77
88plugins {
99 id(" java" )
10- id(" org.jetbrains.kotlin.jvm" ) version " 1.5.10 "
11- id(" org.jetbrains.intellij" ) version " 1.0 "
10+ id(" org.jetbrains.kotlin.jvm" ) version " 1.6.20 "
11+ id(" org.jetbrains.intellij" ) version " 1.5.3 "
1212 id(" org.jetbrains.changelog" ) version " 1.1.2"
1313}
1414
@@ -54,13 +54,13 @@ changelog {
5454}
5555
5656tasks {
57- // Set the compatibility versions to 1.8
57+ // Set the compatibility versions to 11
5858 withType<JavaCompile > {
59- sourceCompatibility = " 1.8 "
60- targetCompatibility = " 1.8 "
59+ sourceCompatibility = " 11 "
60+ targetCompatibility = " 11 "
6161 }
6262 withType<KotlinCompile > {
63- kotlinOptions.jvmTarget = " 1.8 "
63+ kotlinOptions.jvmTarget = " 11 "
6464 }
6565
6666 patchPluginXml {
Original file line number Diff line number Diff line change 33
44# pluginGroup = com.intellij.plugins.bodhi.pmd
55pluginName = PMDPlugin
6- pluginVersion = 1.8.22
6+ pluginVersion = 1.8.23
77
88# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99# for insight into build numbers and IntelliJ Platform versions.
10- pluginSinceBuild = 201 .0
11- pluginUntilBuild = 214 .0
10+ pluginSinceBuild = 211 .0
11+ pluginUntilBuild = 240 .0
1212
1313# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1414# See https://jb.gg/intellij-platform-builds-list for available build versions.
15- pluginVerifierIdeVersions = 2020.2 .4, 2020.3.4, 2021 .1.1
15+ pluginVerifierIdeVersions = 2020.3 .4, 2021.1.1, 2022 .1.3
1616
1717platformType = IC
1818platformVersion = 2021.1.1
You can’t perform that action at this time.
0 commit comments