Attempt 2

This commit is contained in:
MattBDev 2019-08-22 21:10:31 -04:00
parent 70d4af006a
commit c36db8de37

View File

@ -59,9 +59,9 @@ sourceSets {
tasks.named<Copy>("processResources") {
filesMatching("fawe.properties") {
expand("version" to "$version")
expand("commit" to "${rootProject.ext["revision"]}")
expand("date" to "${rootProject.ext["date"]}")
expand("version" to "$version",
"commit" to "${rootProject.ext["revision"]}",
"date" to "${rootProject.ext["date"]}")
}
}
tasks.named<ShadowJar>("shadowJar") {