IntelliJ Platform Gradle Plugin: allow to unset until-build

This commit is contained in:
Jakub Chrzanowski 2024-02-08 14:25:09 +01:00
parent d0be2890d5
commit 9c1cd19778
No known key found for this signature in database
GPG Key ID: C39095BFD769862E
2 changed files with 8 additions and 2 deletions

View File

@ -394,6 +394,9 @@ The given value will be assigned to the `<idea-version until-build=""/>` element
The default value is set to the `MAJOR.*` version based on the currently selected IntelliJ Platform, such as `233.*`.
The `until-build` attribute can be unset by setting `provider { null }` as a value.
Note that passing only `null` will make Gradle use a default value instead.
{style="narrow"}
Type
: `Property<String>`

View File

@ -543,7 +543,7 @@ See also:
The lowest IDE version compatible with the plugin.
The provided value will be set as a value of the `<idea-version since-build=""/>` element attribute.
The provided value will be set as a value of the `<idea-version since-build="..."/>` element attribute.
{style="narrow"}
Type
@ -562,7 +562,10 @@ See also:
The highest IDE version compatible with the plugin.
Undefined value declares compatibility with all the IDEs since the version specified by the `since-build` (also with the future builds that may cause incompatibility errors).
The provided value will be set as a value of the `<idea-version until-build=""/>` element attribute.
The provided value will be set as a value of the `<idea-version until-build="..."/>` element attribute.
The `until-build` attribute can be unset by setting `provider { null }` as a value.
Note that passing only `null` will make Gradle use a default value instead.
{style="narrow"}
Type