Skip to content

Commit 4b02372

Browse files
committed
gateway compile
1 parent b4c4c3c commit 4b02372

File tree

4 files changed

+5
-19
lines changed

4 files changed

+5
-19
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ object IdeVersions {
103103
Profile(
104104
name = "2025.1",
105105
gateway = ProductProfile(
106-
sdkVersion = "251.23774.441-CUSTOM-SNAPSHOT",
106+
sdkVersion = "251.23774.317",
107107
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
108108
),
109109
community = ProductProfile(
@@ -142,7 +142,7 @@ object IdeVersions {
142142
Profile(
143143
name = "2025.2",
144144
gateway = ProductProfile(
145-
sdkVersion = "252.23892-EAP-CANDIDATE-SNAPSHOT",
145+
sdkVersion = "252.23892.230",
146146
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
147147
),
148148
community = ProductProfile(

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ dependencies {
9494
val type = toolkitIntelliJ.ideFlavor.map { IntelliJPlatformType.fromCode(it.toString()) }
9595

9696
create(type, version, useInstaller = false)
97+
} else {
98+
create(IntelliJPlatformType.Gateway, version)
9799
}
98100

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

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

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,6 @@ val gatewayOnlyResourcesJar by tasks.registering(Jar::class) {
4848
from(processGatewayOnlyResources)
4949
}
5050

51-
listOf(
52-
"intellijPlatformDependency",
53-
"intellijPlatformDependency_integrationTest",
54-
"intellijPluginVerifierIdesDependency",
55-
).forEach { configurationName ->
56-
configurations[configurationName].dependencies.addLater(
57-
toolkitIntelliJ.version().map {
58-
dependencies.create(
59-
group = "com.jetbrains.gateway",
60-
name = "JetBrainsGateway",
61-
version = it,
62-
)
63-
}
64-
)
65-
}
66-
6751
dependencies {
6852
intellijPlatform {
6953
pluginVerifier()

plugins/toolkit/jetbrains-gateway/src/software/aws/toolkits/jetbrains/gateway/welcomescreen/WorkspaceGroupsPanel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class WorkspaceGroupsPanel(
138138
gbc.next().anchor(GridBag.WEST)
139139
)
140140

141-
val projectGroups = groupByRepo(workspaces, allRepos).sortedWith(compareBy(Comparator.nullsLast<String?>(Comparator.naturalOrder())) { it.repoName })
141+
val projectGroups = groupByRepo(workspaces, allRepos).sortedWith(compareBy(Comparator.nullsLast<String>(Comparator.naturalOrder())) { it.repoName })
142142
projectGroups.forEachIndexed { index, group ->
143143
panel.createWorkspaceGroup(project, group, gbc)
144144

0 commit comments

Comments
 (0)