Skip to content

253: org.intellij.intelliLang is reported as bundled module, but it's unavailable #2026

@jansorg

Description

@jansorg

What happened?

In my plugin I have this:

dependencies {
  intellijPlatform {
    bundledPlugin("org.intellij.intelliLang")
  }
}

With 2025.3 EAP1, 2.9.0 warns about this:

Could not determine the dependencies of task ':plugin:compileJava'.
> Could not resolve all dependencies for configuration ':plugin:compileClasspath'.
   > The 'org.intellij.intelliLang' entry refers to a bundled plugin, but it is actually a bundled module. Use bundledModule("org.intellij.intelliLang") instead of bundledPlugin("org.intellij.intelliLang").

But after changing to bundledModule, it also rejects it:

dependencies {
  intellijPlatform {
    bundledModule("org.intellij.intelliLang")
  }
}

prints this:

* What went wrong:
Could not determine the dependencies of task ':plugin:compileJava'.
> Could not resolve all dependencies for configuration ':plugin:compileClasspath'.
   > Specified bundledModule 'org.intellij.intelliLang' doesn't exist.

Steps to reproduce

Setup as above

Gradle IntelliJ Plugin version

2.9.0

Gradle version

8.14.2

Operating System

Linux

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions