For some reason, NSMavenProjectBundle (which is used to locate resources in a maven project during development) explicitly only looks for EOModels in src/main/resources.
Potential solutions include:
Keeping EOModels in src/main/resources and explicitly copying them during maven build (yuck)
Patching NSMavenProjectBundle in Wonder to also look for models in src/main/woresources (quick test seems to confirm that this works).
For some reason,
NSMavenProjectBundle
(which is used to locate resources in a maven project during development) explicitly only looks for EOModels insrc/main/resources
.Potential solutions include:
src/main/resources
and explicitly copying them during maven build (yuck)NSMavenProjectBundle
in Wonder to also look for models insrc/main/woresources
(quick test seems to confirm that this works).That's what I get for only ever using Cayenne…