mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 18:27:49 +08:00
IntelliJ Platform Gradle Plugin: allow to unset until-build
This commit is contained in:
parent
d0be2890d5
commit
9c1cd19778
@ -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>`
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user