IntelliJ Platform Gradle Plugin (2.x)
The IntelliJ Platform Gradle Plugin 2.x is a Gradle plugin for building, testing, verifying, configuring environments, and publishing plugins for IntelliJ-based IDEs. It is the successor of Gradle IntelliJ Plugin (1.x) which is no longer under active development.
Learn more about it in the Release Announcement.
Requirements
IntelliJ Platform Gradle Plugin 2.x requires the following minimal versions:
IntelliJ Platform: 2022.3
Gradle: 8.2
See the Gradle Installation guide on how to upgrade.
Java Runtime: 17
See Gradle JVM in .
Usage
To apply the IntelliJ Platform Gradle Plugin to a project, add the following entry to the plugins
block in the Gradle build file:
If migrating from the Gradle IntelliJ Plugin (1.x), replace the old org.jetbrains.intellij
identifier to org.jetbrains.intellij.platform
and apply its latest 2.1.0
version.
Snapshot Release
To use the latest snapshot version of this plugin, add the following to the Gradle Settings file:
settings.gradle.kts
settings.gradle
Plugins
The IntelliJ Platform Gradle Plugin consists of plugins which can be applied depending on the purpose. By default, the Platform plugin (org.jetbrains.intellij.platform
) should be applied to the main plugin project module.
When working in a Multi-Module Project Structure it is required to use Module plugin (org.jetbrains.intellij.platform.module
) instead of creating tasks and configurations specific to the main module only.
The Settings plugin (org.jetbrains.intellij.platform.settings
) allows for adding plugin development related repositories right in the settings.gradle.kts file if project configuration involves Dependency Resolution Management.
Attaching Sources
To attach IntelliJ Platform sources in the IDE, the Download sources setting has to be enabled in IDE versions 2023.2 and later. This option respects the plugin's downloadSources property, which is enabled by default.
In Download sources in section . Then invoke Reload All Gradle Projects action from the Gradle tool window.
enable optionIn Download sources for dependencies. Then invoke the Reload All Gradle Projects action from the Gradle tool window.
enableNo additional IDE settings are required.
The attaching sources operation in the IDE is handled by the Plugin DevKit plugin, thus it is recommended to always use the latest available IDE version.
If the opened compiled class has no sources available locally, the Plugin DevKit plugin will detect the relevant source coordinates and provide an action to Download IntelliJ Platform sources or Attach $API_NAME$ sources.
Configuration
Setting Up Repositories
All IntelliJ Platform SDK artifacts are available via IntelliJ Maven repositories (see IntelliJ Platform Artifacts Repositories), which exist in three variants:
releases
snapshots
nightly (only selected artifacts)
Example:
Setup Maven Central and defaultRepositories()
repositories:
Example #2:
Build a plugin against a release version of the IntelliJ Platform with dependency on a plugin from the JetBrains Marketplace:
See Repositories Extension on how to configure additional repositories.
Dependency Resolution Management
To access the IntelliJ Platform Gradle Plugin within the Gradle Settings file to use with dependencyResolutionManagement
, add:
settings.gradle.kts
settings.gradle
Cache Redirector
Some repositories, by default, point to JetBrains Cache Redirector to provide better resource resolution. However, it is possible to use the direct repository URL, if available.
To switch off the default usage of JetBrains Cache Redirector, see the useCacheRedirector Gradle property.
Setting Up IntelliJ Platform
Dependencies and repositories are handled using explicit entries within dependencies {}
and repositories {}
blocks in the Gradle build file.
A minimum configuration for targeting IntelliJ IDEA Community 2023.3:
The intellijIdeaCommunity
in the previous sample is one of the extension functions available for adding IntelliJ Platform dependencies to the project. See Dependencies Extension on how to target other IDEs.
Parametrize IntelliJ Platform Dependency
As a fallback, intellijPlatform
extension can be used to allow dynamic configuration of the target platform, for example, via gradle.properties:
The above Gradle properties can be referenced in the Gradle build file with:
The intellijPlatform
helper accepts also the IntelliJPlatformType
type:
Local IntelliJ Platform IDE Instance
It is possible to refer to the locally available IntelliJ-based IDE using the local
helper function:
Setting Up Plugin Dependencies
To specify a dependency on a plugin, it is important to distinguish bundled plugins from plugins available in JetBrains Marketplace.
The Dependencies Extension provides a set of helpers to manage plugin dependencies:
Multi-Module Project Structure
When working on a complex plugin, it is often convenient to split the code base into multiple submodules. To avoid polluting submodules with tasks or configurations specific to the root module only (for example, tasks for signing, publishing, or running the plugin), a dedicated sub-plugin was introduced.
The root module of the IntelliJ-based plugin project must apply the main Platform plugin as follows:
Any other included submodule must use the Module plugin instead: