Skip to content

Commit 23d3951

Browse files
authored
Drop IDE support for 221 (#3682)
* drop IDE support for 221 * updated in ReadMe file * empty line
1 parent ad877d8 commit 23d3951

File tree

10 files changed

+8
-142
lines changed

10 files changed

+8
-142
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" : "Removed support for 2022.1.x IDEs"
4+
}

.run/Run IDE - Core [2022.1].run.xml

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

.run/Run IDE - Rider [2022.1].run.xml

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

.run/Run IDE - Ultimate [2022.1].run.xml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We want your feedback!
2323
- Code contributions. See [our contributing guide](CONTRIBUTING.md) for how to get started.
2424

2525
## Supported IDEs
26-
All JetBrains IDEs 2022.1+
26+
All JetBrains IDEs 2022.2+
2727

2828
## Installation
2929

buildSrc/src/main/kotlin/software/aws/toolkits/gradle/BuildScriptUtils.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fun Project.isCi() : Boolean = providers.environmentVariable("CI").isPresent
2424

2525
fun Project.jvmTarget(): Provider<JavaVersion> = withCurrentProfileName {
2626
when (it) {
27-
"2021.3", "2022.1", "2022.2" -> JavaVersion.VERSION_11
27+
"2021.3", "2022.2" -> JavaVersion.VERSION_11
2828
else -> JavaVersion.VERSION_17
2929
}
3030
}
@@ -33,7 +33,7 @@ fun Project.jvmTarget(): Provider<JavaVersion> = withCurrentProfileName {
3333
fun Project.kotlinTarget(): Provider<String> = withCurrentProfileName {
3434
when (it) {
3535
"2021.3" -> KotlinVersionEnum.KOTLIN_1_5
36-
"2022.1", "2022.2" -> KotlinVersionEnum.KOTLIN_1_6
36+
"2022.2" -> KotlinVersionEnum.KOTLIN_1_6
3737
"2022.3" -> KotlinVersionEnum.KOTLIN_1_7
3838
else -> KotlinVersionEnum.KOTLIN_1_8
3939
}.version

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

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import org.gradle.api.Project
77
import org.gradle.api.provider.Provider
88
import org.gradle.api.provider.ProviderFactory
99

10+
1011
enum class IdeFlavor { GW, IC, IU, RD }
1112

1213
object IdeVersions {
@@ -62,44 +63,6 @@ object IdeVersions {
6263
nugetVersion = "2021.3.0"
6364
)
6465
),
65-
Profile(
66-
name = "2022.1",
67-
community = ProductProfile(
68-
sdkFlavor = IdeFlavor.IC,
69-
sdkVersion = "2022.1",
70-
plugins = commonPlugins + listOf(
71-
"java",
72-
"com.intellij.gradle",
73-
"org.jetbrains.idea.maven",
74-
"PythonCore:221.5080.216",
75-
"Docker:221.5080.126"
76-
)
77-
),
78-
ultimate = ProductProfile(
79-
sdkFlavor = IdeFlavor.IU,
80-
sdkVersion = "2022.1",
81-
plugins = commonPlugins + listOf(
82-
"JavaScript",
83-
// Transitive dependency needed for javascript
84-
// Can remove when https://github.com/JetBrains/gradle-intellij-plugin/issues/608 is fixed
85-
"com.intellij.css",
86-
"JavaScriptDebugger",
87-
"com.jetbrains.codeWithMe",
88-
"com.intellij.database",
89-
"Pythonid:221.5080.212",
90-
"org.jetbrains.plugins.go:221.5080.210"
91-
)
92-
),
93-
rider = RiderProfile(
94-
sdkVersion = "2022.1",
95-
plugins = commonPlugins + listOf(
96-
"rider-plugins-appender" // Workaround for https://youtrack.jetbrains.com/issue/IDEA-179607
97-
),
98-
netFrameworkTarget = "net472",
99-
rdGenVersion = "2022.1.3",
100-
nugetVersion = "2022.1.0"
101-
)
102-
),
10366
Profile(
10467
name = "2022.2",
10568
gateway = ProductProfile(

jetbrains-core/src-221/software/aws/toolkits/jetbrains/core/docker/compatability/DockerRegistry.kt

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

jetbrains-core/src-221/software/aws/toolkits/jetbrains/core/terminal/AwsLocalTerminalRunner.kt

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

jetbrains-ultimate/src-221/software/aws/toolkits/jetbrains/services/codewhisperer/importadder/CodeWhispererJSImportUtil.kt

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

0 commit comments

Comments
 (0)