Skip to content

Commit 5c1df1f

Browse files
committed
Disable some stuff
1 parent 22e8f5e commit 5c1df1f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ dependencies {
2323
}
2424

2525
tasks.prepareJarSearchableOptions {
26-
val pluginXmlJar = project(":plugin-core").tasks.jar
27-
dependsOn(pluginXmlJar)
28-
composedJarFile.set(pluginXmlJar.flatMap { it.archiveFile })
26+
enabled = false
2927
}
3028

3129
tasks.check {

plugins/toolkit/jetbrains-core/resources/META-INF/inactive/plugin-gateway.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@
1414
<incompatible-with>com.intellij.modules.python</incompatible-with>
1515
<incompatible-with>com.intellij.java</incompatible-with>
1616

17+
<xi:include href="/META-INF/module-core.xml" />
18+
1719
<extensions defaultExtensionNs="com.intellij">
1820
<applicationService serviceInterface="software.aws.toolkits.jetbrains.core.credentials.ToolkitConnectionManager"
1921
serviceImplementation="software.aws.toolkits.jetbrains.core.credentials.DefaultToolkitConnectionManager"/>
22+
<applicationService serviceImplementation="migration.software.aws.toolkits.jetbrains.core.coroutines.PluginCoroutineScopeTracker"/>
23+
<projectService serviceImplementation="migration.software.aws.toolkits.jetbrains.core.coroutines.PluginCoroutineScopeTracker"/>
2024
</extensions>
2125
</idea-plugin>

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ tasks.buildPlugin {
167167
archiveClassifier.set(classifier)
168168
}
169169

170+
tasks.buildSearchableOptions {
171+
enabled = false
172+
}
173+
170174
tasks.integrationTest {
171175
val testToken = RandomString.make(32)
172176
environment("CWM_HOST_STATUS_OVER_HTTP_TOKEN", testToken)

0 commit comments

Comments
 (0)