Skip to content

Commit 3a2c2e9

Browse files
committed
Fix build config: revert buildSearchableOptions to tasks block, remove unused Java plugin dep
- Move buildSearchableOptions disable back to tasks block (the extension property may not exist in IntelliJ Platform Gradle Plugin 2.3.0) - Remove bundledPlugin("com.intellij.java") — not used by any source code - Update foojay-resolver-convention to 1.0.0 (matches JetBrains template) https://claude.ai/code/session_015LpmjAt17XD582hZ9TPLCv
1 parent 7e0b53d commit 3a2c2e9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

review-plugin/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ kotlin {
2121
dependencies {
2222
intellijPlatform {
2323
intellijIdeaCommunity("2024.1")
24-
bundledPlugin("com.intellij.java")
2524
pluginVerifier()
2625
instrumentationTools()
2726
}
@@ -31,7 +30,6 @@ dependencies {
3130
}
3231

3332
intellijPlatform {
34-
buildSearchableOptions = false
3533
pluginConfiguration {
3634
id = "com.reviewplugin"
3735
name = "Agent Review"
@@ -52,4 +50,7 @@ tasks {
5250
test {
5351
useJUnit()
5452
}
53+
buildSearchableOptions {
54+
enabled = false
55+
}
5556
}

review-plugin/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pluginManagement {
66
}
77

88
plugins {
9-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
9+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
1010
}
1111

1212
rootProject.name = "review-plugin"

0 commit comments

Comments
 (0)