This message was deleted.
# community-support
s
This message was deleted.
v
Define "check"
n
I have configuration to generate jpametamodels, sometimes it compiles jpametamodels after src/java compilation in that case it unable to find those jpametamodels used in classes
v
Then properly register your code generation task as source directory, given it properly declares its outputs. Then any task that needs sources like
compileJava
,
sourcesJar
, static code analyzers, and so o, all have the necessary task dependency automatically.
Copy code
sourceSets { main { java.srcDir(generateJpaMetaModelsTask) } }
And then remove the bad-practice hard-coding of the result path of the generation that you probably added before.
n
ill also try in this scenario and thanks for fast replies
👌 1