Skip to content

Commit 83227fe

Browse files
committed
Update to PMD 6.47.0 and higher IDE versions
1 parent 971e501 commit 83227fe

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
33

44
fun properties(key: String) = project.findProperty(key).toString()
55

6-
val pmdVersion = "6.44.0"
6+
val pmdVersion = "6.47.0"
77

88
plugins {
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

5656
tasks {
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 {

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
# pluginGroup = com.intellij.plugins.bodhi.pmd
55
pluginName = 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

1717
platformType = IC
1818
platformVersion = 2021.1.1

0 commit comments

Comments
 (0)