Skip to content

Commit 12cddcb

Browse files
authored
Merge pull request #322 from mercari/fix-jetbrains-plugin-version
fix(jetbrains-plugin): fix plugin descriptor error for JetBrains Marketplace publishing
2 parents 78e27ef + eebecb7 commit 12cddcb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release-jetbrains.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-java@v4
2121
with:
2222
distribution: zulu
23-
java-version: 17
23+
java-version: 21
2424
# Setup Gradle
2525
- uses: gradle/actions/setup-gradle@v3
2626
with:

lsp/client/jetbrains/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ intellijPlatform {
8383

8484
ideaVersion {
8585
sinceBuild = properties("pluginSinceBuild")
86-
untilBuild = properties("pluginUntilBuild")
86+
untilBuild = provider { null }
8787
}
8888
}
8989

lsp/client/jetbrains/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ pluginVersion = 0.2.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 243
11-
# pluginUntilBuild is intentionally not set to allow the plugin to be compatible with future IDE versions.
11+
# pluginUntilBuild is not set to allow the plugin to be compatible with future IDE versions.
1212
# This is relatively safe because:
1313
# 1. This plugin uses stable LSP (Language Server Protocol) APIs which are unlikely to break
1414
# 2. The plugin has minimal IDE integration surface area
1515
# 3. Users can install and test on newer versions without waiting for plugin updates
1616
# If compatibility issues arise in future versions, we can add the restriction then.
17-
pluginUntilBuild =
17+
# pluginUntilBuild =
1818

1919
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
2020
platformType = IU

0 commit comments

Comments
 (0)