Fix task outputs for build date
This commit is contained in:
parent
1c3fb97826
commit
72bd67797c
@ -58,9 +58,11 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val writeBuildDate: Task by tasks.creating {
|
val writeBuildDate: Task by tasks.creating {
|
||||||
doFirst {
|
doLast {
|
||||||
val deployDate = LocalDateTime.now()
|
val deployDate = LocalDateTime.now()
|
||||||
project.buildDir.resolve("resources/main/buildDate").writeText(deployDate.toString())
|
val file = File(project.buildDir, "resources/main/buildDate")
|
||||||
|
file.parentFile.mkdirs()
|
||||||
|
file.writeText(deployDate.toString())
|
||||||
}
|
}
|
||||||
outputs.file("resources/main/buildDate")
|
outputs.file("resources/main/buildDate")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user