mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 17:57:53 +08:00
tools_intellij_platform_gradle_plugin.md: repositories and dependencies configuration
This commit is contained in:
parent
04cc07f887
commit
ad4b4c4497
@ -0,0 +1,290 @@
|
|||||||
|
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||||
|
|
||||||
|
# IntelliJ Platform Gradle Plugin 2.x (EAP)
|
||||||
|
|
||||||
|
<link-summary>IntelliJ Platform Gradle Plugin user and migration guide.</link-summary>
|
||||||
|
|
||||||
|
<tldr>
|
||||||
|
|
||||||
|
**Current Release**: Early Access Preview
|
||||||
|
|
||||||
|
**GitHub**: [Releases & Changelog](https://github.com/JetBrains/gradle-intellij-plugin/releases), [Issue Tracker](https://github.com/JetBrains/gradle-intellij-plugin/issues)
|
||||||
|
|
||||||
|
**Slack**: [#intellij-platform-gradle-plugin](https://jetbrains-platform.slack.com/archives/C05C80200LS) on the [JetBrains Platform Slack](https://plugins.jetbrains.com/slack/)
|
||||||
|
|
||||||
|
</tldr>
|
||||||
|
|
||||||
|
The _IntelliJ Platform Gradle Plugin 2.x_ is a plugin for the Gradle build system to help configure your environment for building, testing, verifying, and publishing plugins for IntelliJ-based IDEs.
|
||||||
|
|
||||||
|
It is going to replace the current _[](tools_gradle_intellij_plugin.md) (1.x)_ in the future.
|
||||||
|
|
||||||
|
> This plugin is currently in **Early Access** and may not support all features and project setups yet (see also [](#requirements)).
|
||||||
|
> Please report bugs or problems in the above-linked issue tracker or Slack channel.
|
||||||
|
>
|
||||||
|
> Any documentation issues on this page should be reported using the feedback form on the bottom of this page.
|
||||||
|
>
|
||||||
|
> Thanks a lot in advance for your feedback!
|
||||||
|
>
|
||||||
|
{title="Early Access Status" style="warning"}
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
The following platforms and environments are supported:
|
||||||
|
|
||||||
|
- IntelliJ Platform: 2022.3 and later
|
||||||
|
- Java Runtime: 17 and later
|
||||||
|
- Gradle: 8.1 and later
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To use the current Early Access Preview snapshot versions, add to your <path>settings.gradle.kts</path> file:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
maven("https://oss.sonatype.org/content/repositories/snapshots/")
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
In the <path>build.gradle.kts</path> file, replace the existing reference to the [](tools_gradle_intellij_plugin.md) plugin (`org.jetbrains.intellij`) with:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
plugins {
|
||||||
|
id("org.jetbrains.intellij.platform") version "%intellij-platform-gradle-plugin-version%"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Available Subplugins
|
||||||
|
|
||||||
|
The plugin has a new ID: `org.jetbrains.intellij.platform`, but also was split into subplugins.
|
||||||
|
This approach allows you to choose between applying all configurations and tasks at once, or applying them separately, e.g., to only use an IntelliJ Platform SDK dependency without creating any tasks.
|
||||||
|
|
||||||
|
#### org.jetbrains.intellij.platform
|
||||||
|
|
||||||
|
{id="plugin.platform"}
|
||||||
|
|
||||||
|
This plugin applies all project-level plugins, which brings the fully-flagged tooling for plugin development for IntelliJ-based IDEs.
|
||||||
|
|
||||||
|
It includes [](#plugin.core) and [](#plugin.tasks) subplugins.
|
||||||
|
|
||||||
|
#### org.jetbrains.intellij.platform.core
|
||||||
|
|
||||||
|
{id="plugin.core"}
|
||||||
|
|
||||||
|
Base plugin registers all necessary custom configurations and dependencies transformers used for handling IntelliJ Platform SDK, JetBrains Runtime, CLI tools, or other plugins when used as dependencies.
|
||||||
|
|
||||||
|
#### org.jetbrains.intellij.platform.tasks
|
||||||
|
|
||||||
|
{id="plugin.tasks"}
|
||||||
|
|
||||||
|
Tasks plugin registers and preconfigures all tasks introduced by the IntelliJ Platform Gradle Plugin.
|
||||||
|
It can be omitted when referring to any IntelliJ Platform SDK dependencies without invoking tasks on project submodules.
|
||||||
|
|
||||||
|
#### org.jetbrains.intellij.platform.settings
|
||||||
|
|
||||||
|
{id="plugin.settings"}
|
||||||
|
|
||||||
|
Settings plugin is required in <path>settings.gradle.kts</path> when using `RepositoryHandler` extensions when declaring the IntelliJ Maven repository (see [](intellij_artifacts.md)) for the `dependencyResolutionManagement` Gradle mechanism.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
> Auto-completion, Quick Documentation, and other code insight features are available for many extension functions and properties.
|
||||||
|
>
|
||||||
|
{title="Exploring Configuration Options"}
|
||||||
|
|
||||||
|
### Setting up repositories
|
||||||
|
|
||||||
|
{id="configuration.repositories"}
|
||||||
|
|
||||||
|
All IntelliJ Platform SDK artifacts are available via IntelliJ Maven repositories (see [](intellij_artifacts.md)), which exist in three variants:
|
||||||
|
|
||||||
|
- releases
|
||||||
|
- snapshots
|
||||||
|
- nightly (only select artifacts)
|
||||||
|
|
||||||
|
All required repositories for the project must be declared explicitly within the `intellijPlatform` extension:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
|
||||||
|
intellijPlatform {
|
||||||
|
releases()
|
||||||
|
snapshots()
|
||||||
|
nightly()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The `intellijPlatform` extension available for the `repositories {}` provides the following helper methods for adding repositories:
|
||||||
|
|
||||||
|
| Name | Description |
|
||||||
|
|-------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| `releases` | IntelliJ Platform Releases repository. |
|
||||||
|
| `snapshots` | IntelliJ Platform Snapshots repository. |
|
||||||
|
| `nightly` | IntelliJ Platform Nightly repository, not available publicly. |
|
||||||
|
| `ivy` | Local Ivy repository for resolving local Ivy XML files used for describing artifacts like local IntelliJ Platform instance, bundled plugins, etc. |
|
||||||
|
| `marketplace` | JetBrains Marketplace Repository, hosts plugins for IntelliJ-based IDEs. |
|
||||||
|
| `jetbrainsRuntime` | JetBrains Runtime (JBR), CloudFront-based hosting from which specific JBR releases are fetched, if explicitly requested. |
|
||||||
|
| `binaryReleasesAndroidStudio` | Android Studio Binary Releases, required when running IntelliJ Plugin Verifier against Android Studio releases. |
|
||||||
|
| `binaryReleases` | IntelliJ IDEA Binary Releases, required when running IntelliJ Plugin Verifier against JetBrains IntelliJ-based IDE releases. |
|
||||||
|
| `recommended` | Applies a set of recommended repositories. |
|
||||||
|
|
||||||
|
#### Dependency Resolution Management
|
||||||
|
|
||||||
|
{id="configuration.dependencyResolutionManagement"}
|
||||||
|
|
||||||
|
To access the IntelliJ Platform Gradle Plugin within the <path>settings.gradle.kts</path> to use with `dependencyResolutionManagement`, add:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("org.jetbrains.intellij.platform.settings") version "%intellij-platform-gradle-plugin-version%"
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencyResolutionManagement {
|
||||||
|
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
|
||||||
|
intellijPlatform {
|
||||||
|
recommended()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Cache Redirector
|
||||||
|
|
||||||
|
{id="configuration.cacheRedirector"}
|
||||||
|
|
||||||
|
Some repositories, by default, point to JetBrains Cache Redirector to provide better resources resolution.
|
||||||
|
However, it is possible to use the direct repository URL, if available.
|
||||||
|
|
||||||
|
To switch off the default usage of JetBrains Cache Redirector, add to <path>gradle.properties</path>:
|
||||||
|
|
||||||
|
```
|
||||||
|
org.jetbrains.intellij.platform.buildFeature.useCacheRedirector=false
|
||||||
|
```
|
||||||
|
|
||||||
|
### Setting up IntelliJ Platform
|
||||||
|
|
||||||
|
Dependencies and [repositories](#configuration.repositories) are handled using explicit entries within `dependencies {}` and `repositories {}` blocks in <path>build.gradle.kts</path> file.
|
||||||
|
|
||||||
|
A minimum configuration for targeting IntelliJ IDEA Community 2023.3:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
|
||||||
|
intellijPlatform {
|
||||||
|
recommended()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
intellijPlatform {
|
||||||
|
intellijIdeaCommunity("2023.3")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The `intellijIdeaCommunity` in the previous sample is one of extension functions available for adding IntelliJ Platform dependencies to the project.
|
||||||
|
Other IDEs can be targeted using one the extensions listed in the table below.
|
||||||
|
|
||||||
|
| Extension | Target IDE |
|
||||||
|
|-------------------------|--------------------------------------------|
|
||||||
|
| `androidStudio` | [Android Studio](android_studio.md) |
|
||||||
|
| `clion` | [CLion](clion.md) |
|
||||||
|
| `fleetBackend` | Fleet Backend |
|
||||||
|
| `gateway` | Gateway |
|
||||||
|
| `goland` | [GoLand](goland.md) |
|
||||||
|
| `intellijIdeaCommunity` | [IntelliJ IDEA Community Edition](idea.md) |
|
||||||
|
| `intellijIdeaUltimate` | [](idea_ultimate.md) |
|
||||||
|
| `phpstorm` | [PhpStorm](phpstorm.md) |
|
||||||
|
| `pycharmCommunity` | [PyCharm Community Edition](pycharm.md) |
|
||||||
|
| `pycharmProfessional` | [PyCharm Professional](pycharm.md) |
|
||||||
|
| `rider` | [Rider](rider.md) |
|
||||||
|
| `rustRover` | Rust Rover |
|
||||||
|
| `writerside` | Writerside |
|
||||||
|
|
||||||
|
#### Parametrized IntelliJ Platform dependency
|
||||||
|
|
||||||
|
As a fallback, `intellijPlatform` extension can be used to allow dynamic configuration of the target platform, e.g., via <path>gradle.properties</path>:
|
||||||
|
|
||||||
|
```
|
||||||
|
platformType = IC
|
||||||
|
platformVersion = 2023.3
|
||||||
|
```
|
||||||
|
|
||||||
|
The above Gradle properties can be referenced in the <path>build.gradle.kts</path> file with:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
dependencies {
|
||||||
|
intellijPlatform {
|
||||||
|
val type = providers.gradleProperty("platformType")
|
||||||
|
val version = providers.gradleProperty("platformVersion")
|
||||||
|
|
||||||
|
intellijPlatform(type, version)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The `intellijPlatform` helper accepts also the `IntelliJPlatformType` enum type:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
import org.jetbrains.intellij.platform.gradle.utils.IntelliJPlatformType
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
intellijPlatform {
|
||||||
|
val version = providers.gradleProperty("platformVersion")
|
||||||
|
|
||||||
|
intellijPlatform(IntelliJPlatformType.IntellijIdeaUltimate, version)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Local IntelliJ Platform IDE instance
|
||||||
|
|
||||||
|
It is possible to refer to the locally available IntelliJ-based IDE using the `local` helper function:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
repositories {
|
||||||
|
intellijPlatform {
|
||||||
|
...
|
||||||
|
ivy()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
intellijPlatform {
|
||||||
|
local("/Users/hsz/Applications/IntelliJ IDEA Ultimate.app")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that the `ivy` entry needs to be added to the `repositories {}` block as all local dependencies (local IDE, bundled plugins, etc.) rely on the Ivy repositories.
|
||||||
|
|
||||||
|
### Setting up plugin dependencies
|
||||||
|
|
||||||
|
TODO
|
||||||
|
|
||||||
|
## Tasks
|
||||||
|
|
||||||
|
TODO
|
||||||
|
|
||||||
|
## Migration FAQ
|
||||||
|
|
||||||
|
### Unresolved 'idea' plugin
|
||||||
|
|
||||||
|
Add an explicit dependency on the plugin in <path>build.gradle.kts</path>:
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
id("org.jetbrains.gradle.plugin.idea-ext") version "1.1.7"
|
||||||
|
```
|
||||||
|
|
||||||
|
<include from="snippets.md" element-id="missingContent"/>
|
@ -1,180 +0,0 @@
|
|||||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
|
||||||
|
|
||||||
# IntelliJ Platform Gradle Plugin 2.x (EA)
|
|
||||||
|
|
||||||
<link-summary>IntelliJ Platform Gradle Plugin user and migration guide.</link-summary>
|
|
||||||
|
|
||||||
<tldr>
|
|
||||||
|
|
||||||
**Current Release**: Early Access
|
|
||||||
|
|
||||||
**GitHub**: [Releases & Changelog](https://github.com/JetBrains/gradle-intellij-plugin/releases), [Issue Tracker](https://github.com/JetBrains/gradle-intellij-plugin/issues)
|
|
||||||
|
|
||||||
**Slack**: [#intellij-platform-gradle-plugin](https://jetbrains-platform.slack.com/archives/C05C80200LS) on the [JetBrains Platform Slack](https://plugins.jetbrains.com/slack/)
|
|
||||||
|
|
||||||
</tldr>
|
|
||||||
|
|
||||||
The _IntelliJ Platform Gradle Plugin 2.x_ is a plugin for the Gradle build system to help configure your environment for
|
|
||||||
building, testing, verifying, and publishing plugins for IntelliJ-based IDEs.
|
|
||||||
|
|
||||||
It is going to replace the current _[](tools_gradle_intellij_plugin.md) (1.x)_ in the future.
|
|
||||||
|
|
||||||
> This plugin is currently in **Early Access** and may not support all features and project setups yet (see also [](#requirements)).
|
|
||||||
> Please report bugs or problems in the above-linked issue tracker or Slack channel.
|
|
||||||
>
|
|
||||||
> Any documentation issues on this page should be reported using the feedback form on the bottom of this page.
|
|
||||||
>
|
|
||||||
> Thanks a lot in advance for your feedback!
|
|
||||||
>
|
|
||||||
{title="Early Access Status" style="warning"}
|
|
||||||
|
|
||||||
## Requirements
|
|
||||||
|
|
||||||
The following platforms and environments are supported:
|
|
||||||
|
|
||||||
- IntelliJ Platform: 2022.3 and later
|
|
||||||
- Java Runtime: 17 and later
|
|
||||||
- Gradle: 8.0 and later
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
To use the current Early Access snapshot versions, add to your <path>settings.gradle.kts</path> file:
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
pluginManagement {
|
|
||||||
repositories {
|
|
||||||
maven("https://oss.sonatype.org/content/repositories/snapshots/")
|
|
||||||
gradlePluginPortal()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
In the <path>build.gradle.kts</path> file, replace the existing reference to the [](tools_gradle_intellij_plugin.md) plugin (`org.jetbrains.intellij`) with:
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
plugins {
|
|
||||||
id("org.jetbrains.intellij.platform") version "2.0.0-SNAPSHOT"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Available Subplugins
|
|
||||||
|
|
||||||
The plugin has a new ID: `org.jetbrains.intellij.platform`, but also was split into subplugins.
|
|
||||||
This approach allows you to choose between applying all configurations and tasks at once, or applying them separately, e.g.,
|
|
||||||
to only use an IntelliJ SDK dependency without creating any tasks.
|
|
||||||
|
|
||||||
#### org.jetbrains.intellij.platform
|
|
||||||
|
|
||||||
{id="plugin.platform"}
|
|
||||||
|
|
||||||
This plugin applies all project-level plugins, which brings the fully-flagged tooling for plugin development for IntelliJ-based IDEs.
|
|
||||||
|
|
||||||
It includes [](#plugin.base) and [](#plugin.tasks) subplugins.
|
|
||||||
|
|
||||||
#### org.jetbrains.intellij.platform.base
|
|
||||||
|
|
||||||
{id="plugin.base"}
|
|
||||||
|
|
||||||
Base plugin registers all necessary custom configurations and dependencies transformers used for handling IntelliJ SDK,
|
|
||||||
JetBrains Runtime, or other plugins when used as dependencies.
|
|
||||||
|
|
||||||
#### org.jetbrains.intellij.platform.tasks
|
|
||||||
|
|
||||||
{id="plugin.tasks"}
|
|
||||||
|
|
||||||
Tasks plugin registers and preconfigures all tasks introduced by the IntelliJ Platform Gradle Plugin.
|
|
||||||
It can be omitted when referring to any IntelliJ SDK dependencies without invoking tasks on project submodules.
|
|
||||||
|
|
||||||
#### org.jetbrains.intellij.platform.settings
|
|
||||||
|
|
||||||
{id="plugin.settings"}
|
|
||||||
|
|
||||||
Settings plugin is required in <path>settings.gradle.kts</path> when using `RepositoryHandler` extensions when declaring the
|
|
||||||
IntelliJ Maven repository (see [](intellij_artifacts.md)) for the `dependencyResolutionManagement` Gradle mechanism.
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
> Auto-completion, Quick Documentation, and other code insight features are available for many extension functions and properties.
|
|
||||||
>
|
|
||||||
{title="Exploring Configuration Options"}
|
|
||||||
|
|
||||||
### Setting up IntelliJ Repositories
|
|
||||||
|
|
||||||
{id="intellij.repositories"}
|
|
||||||
|
|
||||||
All IntelliJ SDK artifacts are available via IntelliJ Maven repositories (see [](intellij_artifacts.md)), which exist in three variants:
|
|
||||||
|
|
||||||
- releases
|
|
||||||
- snapshots
|
|
||||||
- nightly (only select artifacts)
|
|
||||||
|
|
||||||
All required repositories for the project must be declared explicitly within the `intellijPlatform` extension:
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
|
|
||||||
intellijPlatform {
|
|
||||||
releases()
|
|
||||||
snapshots()
|
|
||||||
nightly()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Setting up IntelliJ Platform
|
|
||||||
|
|
||||||
Dependencies and [repositories](#intellij.repositories) are handled using explicit entries within `dependencies{}` and `repositories{}` blocks in <path>build.gradle.kts</path> file.
|
|
||||||
|
|
||||||
A minimum configuration for targeting IntelliJ IDEA Community 2023.3:
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
|
|
||||||
intellijPlatform {
|
|
||||||
releases()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
intellijPlatform {
|
|
||||||
intellijIdeaCommunity("2023.3")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The `intellijIdeaCommunity` in the previous sample is one of extension functions available for adding IntelliJ SDK dependencies to the project.
|
|
||||||
Other IDEs can be targeted using one the extensions listed in the table below.
|
|
||||||
|
|
||||||
| Extension | Target IDE |
|
|
||||||
|-------------------------|--------------------------------------------|
|
|
||||||
| `androidStudio` | [Android Studio](android_studio.md) |
|
|
||||||
| `clion` | [CLion](clion.md) |
|
|
||||||
| `gateway` | Gateway |
|
|
||||||
| `goland` | [GoLand](goland.md) |
|
|
||||||
| `intellijIdeaCommunity` | [IntelliJ IDEA Community Edition](idea.md) |
|
|
||||||
| `intellijIdeaUltimate` | [](idea_ultimate.md) |
|
|
||||||
| `phpstorm` | [PhpStorm](phpstorm.md) |
|
|
||||||
| `pycharmCommunity` | [PyCharm Community Edition](pycharm.md) |
|
|
||||||
| `pycharmProfessional` | [PyCharm Professional](pycharm.md) |
|
|
||||||
| `rider` | [Rider](rider.md) |
|
|
||||||
|
|
||||||
As a fallback, `intellijPlatform` extension can be used to allow dynamic configuration of the target platform, e.g., via <path>build.properties</path>.
|
|
||||||
|
|
||||||
## Tasks
|
|
||||||
|
|
||||||
TODO
|
|
||||||
|
|
||||||
## Migration FAQ
|
|
||||||
|
|
||||||
### Unresolved 'idea' plugin
|
|
||||||
|
|
||||||
Add an explicit dependency on the plugin in <path>build.gradle.kts</path>:
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
id("org.jetbrains.gradle.plugin.idea-ext") version "1.1.7"
|
|
||||||
```
|
|
||||||
|
|
||||||
<include from="snippets.md" element-id="missingContent"/>
|
|
1
v.list
1
v.list
@ -21,4 +21,5 @@
|
|||||||
|
|
||||||
<var name="gradle-intellij-plugin-version" value="1.17.0"/>
|
<var name="gradle-intellij-plugin-version" value="1.17.0"/>
|
||||||
<var name="gradle-grammar-kit-plugin-version" value="2022.3.2.1"/>
|
<var name="gradle-grammar-kit-plugin-version" value="2022.3.2.1"/>
|
||||||
|
<var name="intellij-platform-gradle-plugin-version" value="2.0.0-SNAPSHOT"/>
|
||||||
</vars>
|
</vars>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user