Add missing dist jars

This commit is contained in:
Ilya Chernikov
2017-09-01 12:18:37 +03:00
parent aa34c7d32a
commit f7b9ae2556
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -219,6 +219,7 @@ allprojects {
task<Copy>("dist") {
into(distDir)
from(files("compiler/cli/bin")) { into("kotlinc/bin") }
from(files("license")) { into("kotlinc/license") }
}
val compilerCopyTask = task<Copy>("idea-plugin-copy-compiler") {
+7
View File
@@ -25,3 +25,10 @@ val prepare = task("prepare") {
artifacts.add(buildVersion.name, file(buildVersionFilePath)) {
builtBy(prepare)
}
val distKotlinHomeDir: String by rootProject.extra
val dist by task<Copy> {
into(File(distKotlinHomeDir))
from(buildVersionFilePath)
}