Slackbot
08/11/2023, 2:45 PMVampire
08/11/2023, 2:50 PMVampire
08/11/2023, 2:55 PMbuild/generated/sources/annotationProcessor
while Antlr output goes to build/generated-src/antlr/
, and Kotlin DSL accessors in plugin projects go to build/generated-sources/
Scott Palmer
08/11/2023, 3:21 PMbuild
anything under build would be generated, but you can't be sure of other places.Vampire
08/11/2023, 4:14 PMcom.example.build.whatever
. And also builds that generate to src/main/generated
.Scott Palmer
08/11/2023, 4:19 PMproject.buildDir
is generated, and like I said, you can't be sure of anything found elsewhere. Though it is really bad practice to have anything generated that doesn't go somewhere under the build dir. Similar things caused all sorts of issues when I tried to work with the cpp-library
plugin on an existing Visual Studio project - The source was in the project root, so the build dir was a subfolder of the source dir... what I nightmare.