I noticed that my plugin become incompatible from build 252.x because the org.jetbrains.plugins.gradle.dependency.updater
is no longer resolved. For me, it looks like it is no longer a bundled plugin, which makes very limited sense.
What happened to the dependency updater, and what is the migration path?
We use:
- Platform Version: IC, 2023.3.8
- org.jetbrains.intellij.platform:2.2.1
- no custom pinned versions
And we are compatible from 233 to 251.
Hi, it became a sub-module of Gradle for Java
plugin intellij-community/plugins/gradle/gradle-dependency-updater/resources/intellij.gradle.dependencyUpdater.xml at master · JetBrains/intellij-community · GitHub
Probably you can still depend on it via:
<dependencies>
<module name="intellij.gradle.dependencyUpdater"/>
</dependencies>
ID of plugin for build classpath - org.jetbrains.plugins.gradle
I’d also recommend using com.intellij.externalSystem.ExternalDependencyModificator
and get GradleDependencyModificator
indirectly from com.intellij.externalSystem.ExternalDependencyModificator#EP_NAME
instead of depending on this module, it never meant to be used as API.