Skip to content

Commit 9b727ea

Browse files
committed
fix(toolkit): fix incompatible version warning in toolkit
1 parent 561d912 commit 9b727ea

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

plugins/toolkit/intellij-standalone/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ intellijPlatform {
2121
dependencies {
2222
intellijPlatform {
2323
localPlugin(project(":plugin-core"))
24+
plugin("PythonCore:243.18137.10")
2425
}
2526
}
2627

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)