Skip to content

Commit 77d1765

Browse files
committed
Fix 2025.3 platform dependency resolution
- Revert sdkVersion to '2025.3' (let Gradle map to correct build) - Change IdeFlavor from IC to IU for community builds (IC discontinued in 2025.3) - Follows JetBrains recommendation to use standard IDE versions instead of build numbers
1 parent d35271c commit 77d1765

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

buildSrc/src/main/kotlin/software/aws/toolkits/gradle/intellij/IdeVersions.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,11 @@ object IdeVersions {
156156
Profile(
157157
name = "2025.3",
158158
gateway = ProductProfile(
159-
sdkVersion = "253.25908.29",
159+
sdkVersion = "2025.3",
160160
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
161161
),
162162
community = ProductProfile(
163-
sdkVersion = "253.25908.29",
163+
sdkVersion = "2025.3",
164164
bundledPlugins = commonPlugins + listOf(
165165
"com.intellij.java",
166166
"com.intellij.gradle",
@@ -176,7 +176,7 @@ object IdeVersions {
176176
)
177177
),
178178
ultimate = ProductProfile(
179-
sdkVersion = "253.25908.29",
179+
sdkVersion = "2025.3",
180180
bundledPlugins = commonPlugins + listOf(
181181
"JavaScript",
182182
"JavaScriptDebugger",

plugins/core/jetbrains-community/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ tasks.compileKotlin {
4545
}
4646

4747
intellijToolkit {
48-
ideFlavor.set(IdeFlavor.IC)
48+
// For 2025.3+, use IU (Ultimate) as the unified platform since IC (Community) was discontinued
49+
ideFlavor.set(IdeFlavor.IU)
4950
}
5051

5152
// expose intellij test framework to fixture consumers

0 commit comments

Comments
 (0)