Skip to content

Commit

Permalink
Remove gson from compiler fat jar
Browse files Browse the repository at this point in the history
KT-56438: Fixed
(cherry picked from commit 6263b67)
  • Loading branch information
nav-nav committed Aug 16, 2023
1 parent b925404 commit 7bab2db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prepare/compiler/build.gradle.kts
Expand Up @@ -236,7 +236,8 @@ dependencies {
fatJarContents(commonDependency("org.lz4:lz4-java")) { isTransitive = false }
fatJarContents(commonDependency("org.jetbrains.intellij.deps:asm-all")) { isTransitive = false }
fatJarContents(commonDependency("com.google.guava:guava")) { isTransitive = false }
fatJarContents(commonDependency("com.google.code.gson:gson")) { isTransitive = false}
//Gson is needed for kotlin-build-statistics. Build statistics could be enabled for JPS and Gradle builds. Gson will come from inteliij or KGP.
proguardLibraries(commonDependency("com.google.code.gson:gson")) { isTransitive = false}

fatJarContentsStripServices(commonDependency("com.fasterxml:aalto-xml")) { isTransitive = false }
fatJarContents(commonDependency("org.codehaus.woodstox:stax2-api")) { isTransitive = false }
Expand Down

0 comments on commit 7bab2db

Please sign in to comment.