I have a mavenized project with jar packaging, have a standard layout:
/src/main/java /src/main/resources
When I execute: mvn package
I expect the resulting jar (non-executing) file will contain a resource folder and everything inside this folder from the project (i.e. some xml files), but when I open the jar file I only see the com folder, where is the contents of the resource folder at the top level ...
I think the above default is for maven3, but I want to include the resources folder in the jar file ...
source share