Regarding the new extensions: I have a code genera...
# declarative-gradle
p
Regarding the new extensions: I have a code generator (kfx) that (obviously) generates code from a OpenApi file via a task and the task is wired via sourceSets.main.java.srcDir(myTask) to support the generation of client/server code for main and test sourceSets, like if you only need a client library but want to have a mock server in your tests, or vice versa. How should it work with declarative dsl and what’s the expected user experience? Should I extend the base software feature like: javaLibrary and register my extension kfx? How should I wire the generated code with the sourceSets? Or could I extend the a SourceSet/SourceDirectorySet, if possible?
👀 1