IntelliJ Platform Gradle Plugin – FAQ
How to modify system properties of the runIde
task?
Using the very same task documentation, configure runIde
task:
Task runIdeForUiTests
not found
The runIdeForUiTests
is no longer registered by default. Follow the task documentation for more details.
Missing opentest4j
dependency in Test Framework
Due to the IJPL-157292 issue, the opentest4j
dependency is not resolved when using TestFrameworkType.Platform
or TestFrameworkType.JUnit5
.
This results in the NoClassDefFoundError
exception:
To apply the workaround, add the missing org.opentest4j:opentest4j
test dependency to your Gradle build configuration:
JUnit5 Test Framework refers to JUnit4
Due to the IJPL-159134 issue, the JUnit5 Test Framework refers to JUnit4 classes when running test.
This results in the NoClassDefFoundError
exceptions:
To apply the workaround, add the JUnit4 test runtime dependency to your Gradle build configuration:
Dependency on bundled plugin is not resolved after migrating from 1.x
Using Gradle IntelliJ Plugin (1.x), specifying the directory name of the plugin was possible when adding a dependency on a bundled plugin for compatibility reasons. Now, using the actual plugin ID is required. For example, provide plugin ID com.intellij.java
instead of its directory name java
. A migration hint is provided for this and some other commonly used cases.
See Bundled and Other Plugins on how to get all bundled plugin IDs as well as a list of some commonly used ones.
How to disable the automatic reload of dynamic plugins?
See Enabling Auto-Reload for important caveats.
Disable auto-reload globally with intellijPlatform.autoReload
:
It is also possible to disable it for a specific runIde
-based task as follows:
How to disable building the searchable options?
Building the searchable options can be disabled using intellijPlatform.buildSearchableOptions
:
As a result of disabling building searchable options, the Settings that your plugin provides won't be searchable in the dialog. Disabling of the task is suggested for plugins that are not intended to provide custom settings.
Gradle fails with The request for this plugin could not be satisfied
Gradle may fail with the following exception if the IntelliJ Platform Gradle Plugin is applied to the project multiple times with version specified more than once:
The request for this plugin could not be satisfied because the plugin is already on the classpath with an unknown version, so compatibility cannot be checked.
When applying the plugin in the settings.gradle.kts file, the version needs to be omitted when applying it in other build.gradle.kts files.
How to show the log file of a sandbox instance?
The most convenient way to see the logs of a running IDE is to add a tab to the Run tool window displaying the contents of idea.log file. In the Gradle runIde
run configuration, add the log file path according to sandbox location as described in View logs.
Task setupDependencies
not found in root project 'projectName'
This exception is thrown when there's no setupDependencies
task present in the project scope.
See Migrating from Gradle IntelliJ Plugin for more details.
How to expose my plugin API sources to dependent plugins?
See the Bundling Plugin API Sources section for details.
How to mute specific problems in pluginVerification
?
To mute specific problems (for example, use of specific forbidden words in the plugin name), use the freeArgs
parameter to pass a comma-separated list of problem IDs to be muted.
See the list of available options.
JaCoCo Reports 0% Coverage
The Gradle IntelliJ Plugin, when targeting the IntelliJ SDK 2022.1+
, uses the PathClassLoader
class loader by the following system property:
Because of that, JaCoCo – and other external tools that rely on classes available in the bootstrap class loader – fail to discover plugin classes.
In addition, if the code instrumentation is enabled (see intellij.instrumentCode
), it's required to switch to the compiled and instrumented output instead of default compiled classes.
The following changes to your Gradle configuration file:
Kotlin compiler throws Out of memory. Java heap space
error
Please upgrade to Kotlin 1.9.0. See the Incremental compilation section if using Kotlin 1.8.20.
How to check the latest available EAP release?
To list the IntelliJ Platform releases matching your criteria (IntelliJ Platform type, release channels, or build range), use the printProductsReleases task as follows:
The currently selected Java Runtime is not JetBrains Runtime (JBR)
When running tests or IDE with your plugin loaded, it is necessary to use JetBrains Runtime (JBR). In the case, no JBR is found in the plugin configuration, there's the following warning logged by the verifyPluginProjectConfiguration
task:
To correctly run your tests or a specific IDE:
use a binary IDE distribution with bundled JetBrains Runtime, i.e., by referring to a local IDE
local(localPath)
repositories { mavenCentral() intellijPlatform { defaultRepositories() } } dependencies { intellijPlatform { local("/Users/hsz/Applications/IntelliJ IDEA Ultimate.app") } }repositories { mavenCentral() intellijPlatform { defaultRepositories() } } dependencies { intellijPlatform { local '/Users/hsz/Applications/IntelliJ IDEA Ultimate.app' } }add an explicit dependency on a JetBrains Runtime with
jetbrainsRuntime()
repositories { mavenCentral() intellijPlatform { defaultRepositories() jetbrainsRuntime() } } dependencies { intellijPlatform { intellijIdeaCommunity("2024.3.1") jetbrainsRuntime("...") } }repositories { mavenCentral() intellijPlatform { defaultRepositories() jetbrainsRuntime() } } dependencies { intellijPlatform { intellijIdeaCommunity '2024.3.1' jetbrainsRuntime '...' } }specify the vendor when configuring the JVM Toolchain along with Foojay Toolchains Plugin:
kotlin { jvmToolchain { languageVersion = JavaLanguageVersion.of(17) vendor = JvmVendorSpec.JETBRAINS } }java { toolchain { languageVersion = JavaLanguageVersion.of(17) vendor = JvmVendorSpec.JETBRAINS } }
plugin.xml: Cannot resolve plugin com.intellij.modules.vcs
Add an explicit dependency on the bundled module: