Skip to content

Commit 5f3b1e3

Browse files
committed
Fix IDEA import error in 'jps-plugin' module
1 parent a6df421 commit 5f3b1e3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

jps/jps-plugin/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ dependencies {
6565
testApi(projectTests(":kotlin-build-common"))
6666
testApi(projectTests(":compiler:test-infrastructure-utils"))
6767
testCompileOnly(jpsBuild())
68-
testApi(devKitJps())
68+
testApi(devKitJps()) {
69+
exclude(group = "com.google.code.gson", module = "gson") // Workaround for Gradle dependency resolution error
70+
}
71+
implementation("com.google.code.gson:gson:2.8.9") // Workaround for Gradle dependency resolution error
6972

7073
testApi(jpsBuildTest())
7174
compilerModules.forEach {

0 commit comments

Comments
 (0)