Closed Kneelawk closed 1 year ago
It seems that the genSources task no longer starts the genSourcesWithQuiltflower task by default, instead starting the genSourcesWithCfr task.
genSources
genSourcesWithQuiltflower
genSourcesWithCfr
It is possible to work around this issue via:
Groovy:
afterEvaluate { tasks.named("genSources") { dependsOn = ["genSourcesWithQuiltflower"] } }
Kotlin:
afterEvaluate { tasks.named("genSources") { setDependsOn(listOf("genSourcesWithQuiltflower")) } }
Something I forgot to mention earlier is that this is happening in a split-env project.
Should be fixed by f0e73ca
The Issue
It seems that the
genSources
task no longer starts thegenSourcesWithQuiltflower
task by default, instead starting thegenSourcesWithCfr
task.Workaround
It is possible to work around this issue via:
Groovy:
Kotlin: