Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: 17
java-version: 21

# Setup Gradle
- name: Setup Gradle
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: 17
java-version: 21

# Setup Gradle
- name: Setup Gradle
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: 17
java-version: 21

# Setup Gradle
- name: Setup Gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: 17
java-version: 21

# Check out current repository
- name: Fetch Sources
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## [Unreleased]

### Changed

- 💥️ Breaking: Minimum required IntelliJ version is 2024.3+

## [2.0.9] - 2025-07-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version = providers.gradleProperty("pluginVersion").get()

// Set the JVM language level used to build the project.
kotlin {
jvmToolchain(17)
jvmToolchain(21)
}

// Configure project's dependencies
Expand Down
8 changes: 6 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ pluginVersion = 2.1.2

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 241
pluginSinceBuild = 243
# no upper bound for the version range -> see https://github.com/amitdev/PMD-Intellij/issues/213
pluginUntilBuild =

platformType = IU
# https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#multipleIDEVersions
# When supporting multiple major versions, it is strongly recommended to build against
# the _lowest_ supported version to guarantee backwards-compatibility.
platformVersion = 2025.2
# For convenience, we use a newer version here, probably the latest released version.
# The plugin is still verified against older versions with the PluginVerifier
# (https://plugins.jetbrains.com/docs/intellij/verifying-plugin-compatibility.html),
# so it probably works with the older versions, but it is not guaranteed.
platformVersion = 2025.3
#platformVersion = 251-EAP-SNAPSHOT
#platformVersion = 2025.1
org.jetbrains.intellij.platform.downloadSources=true
Expand Down