Force :core:createVersionSource to always run regardless of up-to-date

This commit is contained in:
Collin Smith 2020-12-12 17:44:45 -08:00
parent 95845c0ba1
commit 107b408f1e

View File

@ -128,6 +128,9 @@ generateSources.dependsOn 'createVersionSource'
compileJava.dependsOn 'generateSources'
task createVersionSource {
// force task to execute for every build
outputs.upToDateWhen { false }
def versionClassName = 'RiiabloVersion'
def timeZone = TimeZone.getTimeZone("UTC")