I was just reading the Maven Standard Directory Layout (because that’s what I do on Friday nights) and it seems that config files should be in src/main/config. But Hibernate, by default, looks in src/main/resource for hibernate.cfg.xml. Why is this?
For reference: http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html
My understanding is that
resourcesis runtime resources for the application.configis for maven related configuration e.g. for plugins.