Skip to content

Commit

Permalink
Build: Workaround wrong import of transitive libraries in Idea
Browse files Browse the repository at this point in the history
  • Loading branch information
4u7 committed Jun 27, 2019
1 parent bbfa264 commit a10a261
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion prepare/compiler/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,13 @@ publish()
noDefaultJar()

val packCompiler by task<ShadowJar> {
configurations = listOf(fatJarContents)
configurations = emptyList()
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
destinationDir = File(buildDir, "libs")

setupPublicJar(compilerBaseName, "before-proguard")

from(fatJarContents)

dependsOn(fatJarContentsStripServices)
from {
Expand Down

0 comments on commit a10a261

Please sign in to comment.