Set task dependencies

This commit is contained in:
Jerome Prinet
2022-04-08 11:21:56 +02:00
committed by Vyacheslav Gerasimov
parent 61b12c9dbf
commit c067026133
3 changed files with 7 additions and 1 deletions
+2
View File
@@ -52,6 +52,8 @@ val commonMainSources by task<Sync> {
}
into("$buildDir/commonMainSources")
dependsOn(":prepare:build.version:writeStdlibVersion")
}
val commonTestSources by task<Sync> {
+2
View File
@@ -332,6 +332,8 @@ sourcesJar {
project(it).mainSourceSet.allSource
}
}
dependsOn(":compiler:fir:checkers:generateCheckersComponents")
}
javadocJar()
@@ -15,5 +15,7 @@ dependencies {
publish()
runtimeJar()
sourcesJar()
sourcesJar().configure {
dependsOn(":compiler:fir:checkers:generateCheckersComponents")
}
javadocJar()