Add missing dist jars
This commit is contained in:
@@ -219,6 +219,7 @@ allprojects {
|
|||||||
task<Copy>("dist") {
|
task<Copy>("dist") {
|
||||||
into(distDir)
|
into(distDir)
|
||||||
from(files("compiler/cli/bin")) { into("kotlinc/bin") }
|
from(files("compiler/cli/bin")) { into("kotlinc/bin") }
|
||||||
|
from(files("license")) { into("kotlinc/license") }
|
||||||
}
|
}
|
||||||
|
|
||||||
val compilerCopyTask = task<Copy>("idea-plugin-copy-compiler") {
|
val compilerCopyTask = task<Copy>("idea-plugin-copy-compiler") {
|
||||||
|
|||||||
@@ -25,3 +25,10 @@ val prepare = task("prepare") {
|
|||||||
artifacts.add(buildVersion.name, file(buildVersionFilePath)) {
|
artifacts.add(buildVersion.name, file(buildVersionFilePath)) {
|
||||||
builtBy(prepare)
|
builtBy(prepare)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val distKotlinHomeDir: String by rootProject.extra
|
||||||
|
|
||||||
|
val dist by task<Copy> {
|
||||||
|
into(File(distKotlinHomeDir))
|
||||||
|
from(buildVersionFilePath)
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user