Skip to content

Commit e06c8f7

Browse files
authored
Remove support for GW 222 and 223 (#3631)
* remove GW 222 and 223 * feedback changes
1 parent 8ef849b commit e06c8f7

File tree

5 files changed

+6
-97
lines changed

5 files changed

+6
-97
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "removal",
3+
"description" : "Remove support for Gateway 2022.2 and 2022.3."
4+
}

.run/Run IDE - Gateway [2022.2].run.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.run/Run IDE - Gateway [2022.3].run.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

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

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -26,50 +26,8 @@ object IdeVersions {
2626
}.toTypedArray()
2727

2828
private val ideProfiles = listOf(
29-
Profile(
30-
name = "2021.3",
31-
community = ProductProfile(
32-
sdkFlavor = IdeFlavor.IC,
33-
sdkVersion = "2021.3",
34-
plugins = commonPlugins + listOf(
35-
"java",
36-
"com.intellij.gradle",
37-
"org.jetbrains.idea.maven",
38-
"PythonCore:213.5744.248",
39-
"Docker:213.5744.202"
40-
)
41-
),
42-
ultimate = ProductProfile(
43-
sdkFlavor = IdeFlavor.IU,
44-
sdkVersion = "2021.3",
45-
plugins = commonPlugins + listOf(
46-
"JavaScript",
47-
// Transitive dependency needed for javascript
48-
// Can remove when https://github.com/JetBrains/gradle-intellij-plugin/issues/608 is fixed
49-
"com.intellij.css",
50-
"JavaScriptDebugger",
51-
"com.intellij.database",
52-
"Pythonid:213.5744.248",
53-
"org.jetbrains.plugins.go:213.5744.223"
54-
)
55-
),
56-
rider = RiderProfile(
57-
sdkVersion = "2021.3",
58-
plugins = commonPlugins + listOf(
59-
"rider-plugins-appender" // Workaround for https://youtrack.jetbrains.com/issue/IDEA-179607
60-
),
61-
netFrameworkTarget = "net472",
62-
rdGenVersion = "0.213.394",
63-
nugetVersion = "2021.3.0"
64-
)
65-
),
6629
Profile(
6730
name = "2022.2",
68-
gateway = ProductProfile(
69-
sdkFlavor = IdeFlavor.GW,
70-
sdkVersion = "222.4459-EAP-CANDIDATE-SNAPSHOT",
71-
plugins = arrayOf("org.jetbrains.plugins.terminal")
72-
),
7331
community = ProductProfile(
7432
sdkFlavor = IdeFlavor.IC,
7533
sdkVersion = "2022.2",
@@ -110,11 +68,6 @@ object IdeVersions {
11068
),
11169
Profile(
11270
name = "2022.3",
113-
gateway = ProductProfile(
114-
sdkFlavor = IdeFlavor.GW,
115-
sdkVersion = "223.7571-EAP-CANDIDATE-SNAPSHOT",
116-
plugins = arrayOf("org.jetbrains.plugins.terminal")
117-
),
11871
community = ProductProfile(
11972
sdkFlavor = IdeFlavor.IC,
12073
// test failure related to null notification contexts in 2022.3

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ include("core")
3535
include("jetbrains-core")
3636

3737
when (providers.gradleProperty("ideProfileName").get()) {
38-
// FIX_WHEN_MIN_IS_222
38+
// FIX_WHEN_MIN_IS_223
3939
// TODO: see if we can key this off the prescence of a gateway SDK declared in IdeVersions
40-
"2021.2", "2021.3", "2022.1" -> {}
40+
"2022.2", "2022.3" -> {}
4141
else -> {
4242
include("jetbrains-gateway")
4343
}

0 commit comments

Comments
 (0)