File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ intellijPlatform {
2121dependencies {
2222 intellijPlatform {
2323 localPlugin(project(" :plugin-core" ))
24+ plugin(" PythonCore:243.18137.10" )
2425 }
2526}
2627
Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ val patchPluginXml = tasks.named<PatchPluginXmlTask>("patchPluginXml")
5757patchPluginXml.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
6264tasks.jar {
@@ -79,6 +81,8 @@ tasks.integrationTest {
7981val 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
8488val patchGatewayPluginXml by tasks.registering {
You can’t perform that action at this time.
0 commit comments