Skip to content

Commit 43edf22

Browse files
authored
Fix toolkit incorrectly including Gateway plugin.xml (#4752)
1 parent 9a396ff commit 43edf22

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,14 @@ listOf(
6666

6767
dependencies {
6868
intellijPlatform {
69-
pluginModule(project(":plugin-toolkit:jetbrains-core", "gatewayArtifacts"))
70-
7169
pluginVerifier()
7270

7371
testFramework(TestFrameworkType.Bundled)
7472
}
7573

7674
// link against :j-c: and rely on :intellij-standalone:composeJar to pull in :j-c:instrumentedJar, but gateway variant when from :jetbrains-gateway
7775
compileOnly(project(":plugin-toolkit:jetbrains-core"))
76+
gatewayOnlyRuntimeOnly(project(":plugin-toolkit:jetbrains-core", "gatewayArtifacts"))
7877
// delete when fully split
7978
gatewayOnlyRuntimeOnly(project(":plugin-core:core"))
8079
gatewayOnlyRuntimeOnly(project(":plugin-core:jetbrains-community"))
@@ -141,6 +140,10 @@ artifacts {
141140
add(gatewayResources.name, gatewayResourcesDir)
142141
}
143142

143+
tasks.prepareJarSearchableOptions {
144+
enabled = false
145+
}
146+
144147
tasks.jar {
145148
duplicatesStrategy = DuplicatesStrategy.WARN
146149
}

0 commit comments

Comments
 (0)