From 7af5fe0893171434b12d80ade771396d41ef461b Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 5 Apr 2017 18:56:04 -0700 Subject: [PATCH] copy() not working quite right. --- kobalt/src/Build.kt | 4 +++- kobalt/wrapper/kobalt-wrapper.properties | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index 338b748..fcb87df 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -62,7 +62,9 @@ val p = project { install { libDir = "deploy" - collect(compileDependencies).map { include(it) } + collect(compileDependencies).forEach { + copy(it.absolutePath, to("${libDir}/lib")) + } } application { diff --git a/kobalt/wrapper/kobalt-wrapper.properties b/kobalt/wrapper/kobalt-wrapper.properties index 33af601..48ffa7f 100644 --- a/kobalt/wrapper/kobalt-wrapper.properties +++ b/kobalt/wrapper/kobalt-wrapper.properties @@ -1 +1 @@ -kobalt.version=1.0.49 \ No newline at end of file +kobalt.version=1.0.51 \ No newline at end of file