File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
- uses : actions/setup-java@v4
21
21
with :
22
22
distribution : zulu
23
- java-version : 17
23
+ java-version : 21
24
24
# Setup Gradle
25
25
- uses : gradle/actions/setup-gradle@v3
26
26
with :
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ intellijPlatform {
83
83
84
84
ideaVersion {
85
85
sinceBuild = properties(" pluginSinceBuild" )
86
- untilBuild = properties( " pluginUntilBuild " )
86
+ untilBuild = provider { null }
87
87
}
88
88
}
89
89
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ pluginVersion = 0.2.0
8
8
9
9
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10
10
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.
12
12
# This is relatively safe because:
13
13
# 1. This plugin uses stable LSP (Language Server Protocol) APIs which are unlikely to break
14
14
# 2. The plugin has minimal IDE integration surface area
15
15
# 3. Users can install and test on newer versions without waiting for plugin updates
16
16
# If compatibility issues arise in future versions, we can add the restriction then.
17
- pluginUntilBuild =
17
+ # pluginUntilBuild =
18
18
19
19
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
20
20
platformType = IU
You can’t perform that action at this time.
0 commit comments