Skip to content

Commit 2fadfb3

Browse files
committed
impl: support for unlimited 'Until Build' setting
Every time a new GW version is released we need to change the untilBuild setting. With latest IntelliJ Platform Plugin we can provide unlimited upper range with no manual intervention each time a new release is happening.
1 parent c7f3e3d commit 2fadfb3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ intellijPlatform {
105105

106106
ideaVersion {
107107
sinceBuild = providers.gradleProperty("pluginSinceBuild")
108-
untilBuild = providers.gradleProperty("pluginUntilBuild")
108+
untilBuild = provider { null }
109109
}
110110
}
111111

gradle.properties

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ pluginVersion=2.20.0
99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.
1111
pluginSinceBuild=233.6745
12-
# This should be kept up to date with the latest EAP. If the API is incompatible
13-
# with the latest stable, use the eap branch temporarily instead.
14-
pluginUntilBuild=251.*
1512
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1613
# Gateway available build versions https://www.jetbrains.com/intellij-repository/snapshots and https://www.jetbrains.com/intellij-repository/releases
1714
#

0 commit comments

Comments
 (0)