How can I add the output of a task to a SourceSet. My goal is that the task will implicitly be executed before compileGenJava-task.
sourceSets {
gen {
java {
srcDir "${buildDir}/generated-sources/markup2pojo" // equals output directory of generateSources
}
}
[...]
see https://docs.gradle.org/current/userguide/java_plugin.html#sec:changing_java_project_layout
if you have task that generates code before compile ; you can add the generated folder path ex: build/gensrc