intellij-platform-gradle-plugin icon indicating copy to clipboard operation
intellij-platform-gradle-plugin copied to clipboard

Gradle plugin for building plugins for IntelliJ-based IDEs

Results 269 intellij-platform-gradle-plugin issues
Sort by recently updated
recently updated
newest added

### What happened? Disable gradle caching, then run `gradlew clean buildPlugin test --scan`: - with platform plugin **2.4.0**, the **configuration** phase takes **26 sec**: https://scans.gradle.com/s/ffgutmwpb7krc - with platform plugin **2.1.0**,...

bug
depends on Plugin Verifier

### What happened? My plugin builds just fine with 2.3.0, but as soon as I update to 2.4.0 the process fails. ### Relevant log output or stack trace ```shell Calculating...

bug

### What happened? Consider this `build.gradle.kts`: ``` dependencies { intellijPlatform { rider("2024.3.2") jetbrainsRuntime() instrumentationTools() bundledModule("intellij.rider") bundledPlugins("com.jetbrains.xaml.previewer") testFramework(TestFrameworkType.Bundled) } implementation(libs.bson4Jackson) testImplementation(libs.openTest4J) } ``` This will fail, because `rider("2024.3.2")` leads to implicit...

bug
depends on IDEA

### What happened? There are test dependencies in `build.gradle.kts`: ``` dependencies { ... testCompileOnly("com.xyz:abc:${someVersion}") { isChanging = true } // has transitive dependency "com.xyz:def:${someVersion}" testImplementation("com.xyz:def:${someVersion}:tests") { isChanging = true }...

bug

### Describe the need of your request I think it would be more friendly if the tasks of this plugin were split up into different "Intellij_X" groups - that would...

enhancement

### What happened? Using the Gradle IntelliJ plugin is causing unexpected caching behavior leading to tests passing when they shouldn't (or running when they shouldn't compile). When a test is...

bug

### What happened? we're using pluginverification task and noticed that even the report mention errors, the task don't fail if we specify the correct failure level, if the PLAIN verificationFormat...

bug

### What happened? Since Version 2.0.0, the plugin (intellij-platform-gradle-plugin-2.2.1.jar) includes the jackson library (package com.fasterxml.jackson). This breaks jackson dependencies of other gradle plugins. For example the org.owasp.dependencycheck plugin, which requires...

bug

### Describe the need of your request Prevent "weird" behaviour at runtime or even runtime errors/failures (e.g. #1740). We already have a check for kotlinx-coroutines which seems to be one...

enhancement