What is the advantage of the 'src/main/java'' convention?
- by Chris
I've noticed that a lot of projects have the following structure:
Project-A
bin
lib
src
main
java
RootLevelPackageClass.java
I currently use the following convention (as my projects are 100% java):
Project-A
bin
lib
src
RootLevelPackageClass.java
I'm not currently using Maven but am wondering if this is a Maven convention or not…