Maven / Maven Interview questions
Explain the highlevel directory structure of a maven project.
target folder holds the compiled unit of code as part of the build process.
Source folder usually src/main/java holds java source codes.
Test directory is src/main/test that has all the unit testing codes.
More Related questions...