Hi there.
We were using a flat project structure with 2 projects
Each project had some sculptor btdesign files.
Each project had its own POM and sculptorgenerator
main/
/module1
pom.xml
I then needed to add a parent POM. Which I did and it referenced the 2 child projects as <modules>...
main/
pom.xml [parent]
/module1
pom.xml [child]
/module2
However when I did this the sculptor generator started generating the code into the main directory.
main/src/generated/java/...
Instead of under the module1 directory...
No idea why. Any ideas?