Skip to content

Commit 7fa766f

Browse files
committed
Fix SDK version format to use build numbers for 2025.3 EAP
- Change sdkVersion from '2025.3' to '253.25908.29' for gateway, community, and ultimate profiles - Matches the marketplace plugin versions already updated in previous commit - Rider keeps using '2025.3-SNAPSHOT' as it uses snapshot builds - Fixes 'No IntelliJ Platform dependency found with IC-2025.3' error
1 parent 1812667 commit 7fa766f

File tree

1 file changed

+3
-3
lines changed
  • buildSrc/src/main/kotlin/software/aws/toolkits/gradle/intellij

1 file changed

+3
-3
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 = "2025.3",
159+
sdkVersion = "253.25908.29",
160160
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
161161
),
162162
community = ProductProfile(
163-
sdkVersion = "2025.3",
163+
sdkVersion = "253.25908.29",
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 = "2025.3",
179+
sdkVersion = "253.25908.29",
180180
bundledPlugins = commonPlugins + listOf(
181181
"JavaScript",
182182
"JavaScriptDebugger",

0 commit comments

Comments
 (0)