Caleb Cushing
11/10/2025, 5:58 PMsource(sourceSets.main.map { it.output.generatedSourcesDirs })
but to convert to java...
var sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
getByName doens't have any kind of way to map off that into a provider. assuming this is less efficient
javadoc.source(sourceSets.getByName("main").getOutput().getGeneratedSourcesDirs());
how should I convert to a provider here?Philip W
11/10/2025, 6:20 PMCaleb Cushing
11/10/2025, 6:23 PMCaleb Cushing
11/10/2025, 6:23 PMPhilip W
11/10/2025, 6:27 PM