Skip to content

Commit 9af8ddb

Browse files
authored
fix(toolkit): fix incompatible version warning in toolkit (#5986)
1 parent 561d912 commit 9af8ddb

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Fix incompatible version warning for AWS Toolkit in 2025.2"
4+
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ val patchPluginXml = tasks.named<PatchPluginXmlTask>("patchPluginXml")
5757
patchPluginXml.configure {
5858
val buildSuffix = if (!project.isCi()) "+${buildMetadata()}" else ""
5959
pluginVersion.set("$toolkitVersion.${ideProfile.shortName}$buildSuffix")
60+
sinceBuild.set(ideProfile.sinceVersion)
61+
untilBuild.set(ideProfile.untilVersion)
6062
}
6163

6264
tasks.jar {
@@ -79,6 +81,8 @@ tasks.integrationTest {
7981
val gatewayPluginXml = tasks.register<PatchPluginXmlTask>("pluginXmlForGateway") {
8082
val buildSuffix = if (!project.isCi()) "+${buildMetadata()}" else ""
8183
pluginVersion.set("GW-$toolkitVersion-${ideProfile.shortName}$buildSuffix")
84+
sinceBuild.set(ideProfile.sinceVersion)
85+
untilBuild.set(ideProfile.untilVersion)
8286
}
8387

8488
val patchGatewayPluginXml by tasks.registering {

0 commit comments

Comments
 (0)