Skip to content

Commit 101f555

Browse files
committed
Change default IdeFlavor fallback from IC to IU for 2025.3
- Update toolkit-intellij-plugin.gradle.kts default from IC to IU - This catches any modules that don't explicitly set their flavor - Fixes remaining 'No IntelliJ Platform dependency found with IC-2025.3' errors
1 parent 02ab5ee commit 101f555

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ when {
2121
}
2222

2323
else -> {
24-
intellijToolkit.ideFlavor.set(IdeFlavor.IC)
24+
// For 2025.3+, use IU as default since IC (Community) was discontinued
25+
intellijToolkit.ideFlavor.set(IdeFlavor.IU)
2526
}
2627
}
2728

0 commit comments

Comments
 (0)