Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "fix incompatible version warning for AWS Toolkit in 252"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"description" : "fix incompatible version warning for AWS Toolkit in 252"
"description" : Fix incompatible version warning for AWS Toolkit in 2025.2"

}
1 change: 1 addition & 0 deletions plugins/toolkit/intellij-standalone/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ intellijPlatform {
dependencies {
intellijPlatform {
localPlugin(project(":plugin-core"))
plugin("PythonCore:243.18137.10")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not needed

}
}

Expand Down
4 changes: 4 additions & 0 deletions plugins/toolkit/jetbrains-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ val patchPluginXml = tasks.named<PatchPluginXmlTask>("patchPluginXml")
patchPluginXml.configure {
val buildSuffix = if (!project.isCi()) "+${buildMetadata()}" else ""
pluginVersion.set("$toolkitVersion.${ideProfile.shortName}$buildSuffix")
sinceBuild.set(ideProfile.sinceVersion)
untilBuild.set(ideProfile.untilVersion)
}

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

val patchGatewayPluginXml by tasks.registering {
Expand Down
Loading