Skip to content

Commit 140e30a

Browse files
committed
Revert to original state + Gateway installer fix
- Revert all IdeFlavor changes back to IC (original working state) - Only change: Gateway uses installer format instead of non-installer - Test Gateway fix in isolation to identify root cause
1 parent 5ccf4d8 commit 140e30a

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ dependencies {
9595

9696
create(type, version, useInstaller = false)
9797
} else {
98-
create(IntelliJPlatformType.Gateway, version, useInstaller = false)
98+
create(IntelliJPlatformType.Gateway, version)
9999
}
100100

101101
bundledPlugins(toolkitIntelliJ.productProfile().map { it.bundledPlugins })

plugins/amazonq/chat/jetbrains-community/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
intellijToolkit {
11-
ideFlavor.set(IdeFlavor.IU)
11+
ideFlavor.set(IdeFlavor.IC)
1212
}
1313

1414
dependencies {

plugins/amazonq/codetransform/jetbrains-community/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
intellijToolkit {
11-
ideFlavor.set(IdeFlavor.IU)
11+
ideFlavor.set(IdeFlavor.IC)
1212
}
1313

1414
dependencies {

plugins/amazonq/codewhisperer/jetbrains-community/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
intellijToolkit {
11-
ideFlavor.set(IdeFlavor.IU)
11+
ideFlavor.set(IdeFlavor.IC)
1212
}
1313

1414
dependencies {

plugins/amazonq/shared/jetbrains-community/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
intellijToolkit {
12-
ideFlavor.set(IdeFlavor.IU)
12+
ideFlavor.set(IdeFlavor.IC)
1313
}
1414

1515
dependencies {

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

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

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

5251
// expose intellij test framework to fixture consumers

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins {
2828
}
2929

3030
intellijToolkit {
31-
ideFlavor.set(IdeFlavor.IU)
31+
ideFlavor.set(IdeFlavor.IC)
3232
}
3333

3434
dependencies {

0 commit comments

Comments
 (0)