Skip to content

Commit d03329f

Browse files
committed
PR comments
1 parent 429f85b commit d03329f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

plugins/amazonq/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tasks.jar {
3434
}
3535

3636
dependencies {
37-
implementation(project(path = ":plugin-core", configuration="shadow"))
37+
implementation(project(path = ":plugin-core", configuration = "shadow"))
3838
implementation(project(":plugin-amazonq:chat"))
3939
implementation(project(":plugin-amazonq:codetransform"))
4040
implementation(project(":plugin-amazonq:codewhisperer"))

plugins/amazonq/src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@
6363
<depends optional="true">org.jetbrains.idea.maven</depends>
6464
<resource-bundle>software.aws.toolkits.resources.MessagesBundle</resource-bundle>
6565

66+
<incompatible-with>aws.toolkit.core</incompatible-with>
67+
6668
<depends>com.intellij.modules.lang</depends>
6769

6870
<depends optional="true" config-file="amazonq-ext-codewithme.xml">com.jetbrains.codeWithMe</depends>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ intellijPlatform {
1919
}
2020

2121
dependencies {
22-
implementation(project(path = ":plugin-core", configuration="shadow"))
22+
implementation(project(path = ":plugin-core", configuration = "shadow"))
2323
}
2424

2525
tasks.prepareJarSearchableOptions {

plugins/toolkit/intellij-standalone/resources/META-INF/plugin-shim.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
<xi:include href="/META-INF/module-core.xml" />
66
<xi:include href="/META-INF/aws.toolkit.core.xml" />
77

8+
<incompatible-with>aws.toolkit.core</incompatible-with>
9+
810
<extensions defaultExtensionNs="com.intellij">
911
<!-- each plugin needs its own instance of these -->
1012
<applicationService serviceImplementation="migration.software.aws.toolkits.jetbrains.core.coroutines.PluginCoroutineScopeTracker"/>
1113
<projectService serviceImplementation="migration.software.aws.toolkits.jetbrains.core.coroutines.PluginCoroutineScopeTracker"/>
1214
<postStartupActivity implementation = "software.aws.toolkits.jetbrains.core.notifications.NotificationServiceInitializer"/>
1315
<postStartupActivity implementation="software.aws.toolkits.jetbrains.services.telemetry.AwsToolkitStartupMetrics"/>
1416
</extensions>
15-
<projectListeners>
16-
<listener class="software.aws.toolkits.jetbrains.services.telemetry.OpenedFileTypesMetricsListener" topic="com.intellij.openapi.fileEditor.FileEditorManagerListener"/>
17-
</projectListeners>
1817
</idea-plugin>

0 commit comments

Comments
 (0)