From a56aca05eb04a1dae40ed9ac5968101d312208e8 Mon Sep 17 00:00:00 2001 From: Geoffrey Challen Date: Mon, 18 Oct 2021 14:33:10 -0500 Subject: [PATCH] Try to reduce dependency size. --- plugin/build.gradle.kts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index fc53002..b465691 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -9,12 +9,18 @@ plugins { } group = "com.github.cs125-illinois" -version = "2021.10.8" +version = "2021.10.9" dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib:1.5.31") implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.31") - implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31") + implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31") { + exclude(group = "org.jetbrains.kotlin", module = "compiler-embeddable") + exclude(group = "org.jetbrains.kotlin", module = "kotlin-android-extensions") + exclude(group = "org.jetbrains.kotlin", module = "kotlin-compiler-embeddable") + exclude(group = "org.jetbrains.kotlin", module = "kotlin-compiler-runner") + exclude(group = "org.jetbrains.kotlin", module = "kotlin-scripting-compiler-embeddable") + } implementation(gradleApi()) implementation("com.google.code.gson:gson:2.8.8") implementation("org.apache.httpcomponents:httpclient:4.5.13")