Reputation: 23443
Which Maven source directory should contain application.xml
? - src/main/config
or src/main/resources
Upvotes: 0
Views: 181
Reputation: 34179
This should be in the resources
directory. Maven will copy everything is that directory to the target/classes
directory which is probably what you want.
Upvotes: 1