The basic structure standard for the Maven project is as follows.
src/main/java Application/Library sources
src/main/resources Application/Library resource
src/main/filters Resource filter files
src/main/assembly Assembly descriptors
src/main/config Configuration files
src/main/webapp Web application sources
src/test/java Test sources
src/test/resources Test resources
src/test/filters Test resource filter files
src/site Site
By following Maven's recommendations and normal behavior, it is easier for other people familiar with Maven to understand and understand the structure.
Source / Details
source
share