Fix composite build with Kotlin/Native (#1588)

This commit is contained in:
ilmat192
2018-03-26 16:04:41 +03:00
committed by Vyacheslav Gerasimov
parent 4ed5e2f35e
commit 9d15052688
+1
View File
@@ -34,6 +34,7 @@ dependencies {
val jar: Jar by tasks
jar.apply {
dependsOn(fatJarContents)
from(compile.filter { it.extension == "jar" }.map { zipTree(it) })
from(fatJarContents.map { zipTree(it) })
from(fatJarContentsStripServices.map { zipTree(it) }) { exclude("META-INF/services/**") }