Skip to content

Commit d7448da

Browse files
committed
Add constraint on Guava version in ide-plugin to reduce CVEs
1 parent 6eda386 commit d7448da

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

plugins/ide-plugin/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,10 @@
1616
*/
1717

1818
dependencies {
19+
constraints {
20+
api("com.google.guava:guava:33.4.8-jre") {
21+
because("org.jetbrains.gradle.plugin ships with an old version of Guava, see https://youtrack.jetbrains.com/issue/IDEA-374565")
22+
}
23+
}
1924
implementation("org.jetbrains.gradle.plugin.idea-ext:org.jetbrains.gradle.plugin.idea-ext.gradle.plugin:1.1.10")
2025
}

0 commit comments

Comments
 (0)