copy() not working quite right.

This commit is contained in:
Erik C. Thauvin 2017-04-05 18:56:04 -07:00
parent 615b4578a5
commit 7af5fe0893
2 changed files with 4 additions and 2 deletions

View file

@ -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 {

View file

@ -1 +1 @@
kobalt.version=1.0.49
kobalt.version=1.0.51