Refactor more tasks to lazy API

This commit is contained in:
Ilya Chernikov
2019-08-14 16:05:43 +02:00
parent 2ed8fa7624
commit 315a9d66a0
16 changed files with 42 additions and 48 deletions
@@ -8,7 +8,7 @@ dependencies {
sources(project(":kotlin-stdlib-common", configuration = "sources"))
}
val buildSources by tasks.creating(Jar::class.java) {
val buildSources by tasks.registering(Jar::class) {
dependsOn(sources)
from(provider { zipTree(sources.singleFile) })
}