Slackbot
09/06/2022, 9:13 AMThomas Broyer
09/06/2022, 9:26 AMguillaume le floch
09/06/2022, 9:52 AMNiels Doucet
09/06/2022, 10:05 AMbuiltBy
to manage the task dependency if necessary).
e.g.
sourceSets {
main {
output.dir(generatedResources, "builtBy" to "generationTask")
}
}
In general I believe it's not advisable to reuse the same output dir for multiple tasks.Jendrik Johannes
09/06/2022, 10:43 AMjava
files or class
files? For class
files something like ☝️ should workJendrik Johannes
09/06/2022, 10:44 AMjava
files it should be something like this:
sourceSets.main {
java.srcDir(myGenerationTask)
}
Thomas Broyer
09/06/2022, 10:47 AMguillaume le floch
09/06/2022, 11:05 AM