I've noticed that a lot of projects have the following structure:
- Project-A
- bin
- lib
- src
- main
- java
- RootLevelPackageClass.java
- java
- main
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 or if there is another reason. Can someone explain why the first version is so popular these days and if I should adopt this new convention or not?
Chris
Yes, this is the Maven convention.
Even if your project is 100% Java (as is typical with Maven btw), you often have resource files (which go to
src/main/resources
according to the Maven convention), or web app stuff, or ... all these fit into the Maven system easily.If you are happy with your current build system (whatever it is), there is no reason to switch to Maven. Otherwise, or if starting a new project, you could evaluate your options, including Maven.
Its a Maven convention.
Maven is based on Convention over configuration paradigm. Thats means: if you dont follow this convention you must configure where the sources are located. Thats the main benefit IMHO.
Others have already told you it's a Maven convention, I'm going to answer your question instead:
Absolutely none. Certainly it's beneficial to separate pieces of code to separate root folders, but usually you could achieve the same with
instead. In fact here's a big thing Maven does that's actually hugely wrong: It wants to add binary content to source code repository which is meant for textual content only! All binary content should be managed outside the source code repository, that includes images in web applications and whatnot.
But OK, lets assume that you've decided to live in the somewhat smelly Maven ecosystem; then you should of course follow the Maven conventions as strictly as possible.
Yes, this is a maven convention, but even if you're not using maven, there are benefits to using it:
Although I wouldn't argue you should switch just to switch, when starting a new project there's really no reason to not use it-- unless you disagree philosophically with how it breaks the code up.
Main benefit is in having the
test
directory as subdirectory ofsrc
with the same directory structure as the one inmain
:All package private methods of
RootLevelPackageClass
will be visible, i.e. testable fromTestRootLevelPackageClass
. Since the testing code is also source its place should be undersrc
directory.