Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Try to reduce dependency size.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Oct 18, 2021
1 parent 7ec3433 commit a56aca0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a56aca0

Please sign in to comment.