Skip to content

Commit adea378

Browse files
committed
Bundle collaboration modules for 2025.3
OAuth APIs split into separate modules in 253: - intellij.platform.collaborationTools - intellij.platform.collaborationTools.auth.base - intellij.platform.collaborationTools.auth These must be explicitly bundled for compilation.
1 parent 5990ee6 commit adea378

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

buildSrc/src/main/kotlin/toolkit-intellij-subplugin.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@ dependencies {
101101
bundledPlugins(toolkitIntelliJ.productProfile().map { it.bundledPlugins })
102102
plugins(toolkitIntelliJ.productProfile().map { it.marketplacePlugins })
103103

104+
// OAuth modules split in 2025.3 (253) - must be explicitly bundled
105+
val versionStr = version.get()
106+
if (versionStr.contains("253")) {
107+
bundledModule("intellij.platform.collaborationTools")
108+
bundledModule("intellij.platform.collaborationTools.auth.base")
109+
bundledModule("intellij.platform.collaborationTools.auth")
110+
}
111+
104112
testFramework(TestFrameworkType.Plugin.Java)
105113
testFramework(TestFrameworkType.Platform)
106114
testFramework(TestFrameworkType.JUnit5)

0 commit comments

Comments
 (0)