I am searching for hierarchy standard for Java projects and only found this link:

http://java.sun.com/blueprints/code/projectconventions.html

I think that Ant, Maven, Gradle like SE, ME, EE must have silimar structure so it is not sufficient which project type you use...

link|improve this question

69% accept rate
feedback

1 Answer

Use maven structure (details):

my-app
|-- pom.xml
`-- src
    |-- main
    |   `-- java
    |       `-- com
    |           `-- mycompany
    |               `-- app
    |                   `-- App.java
    `-- test
        `-- java
            `-- com
                `-- mycompany
                    `-- app
                        `-- AppTest.java
link|improve this answer
What rationale to use main in src/main/java? – gavenkoa Feb 6 at 9:33
To easily separate production code from your test classes, since you don't want to package those. – flesk Feb 6 at 9:38
also allows for other jvm languages like groovy, scala etc. one would have main/groovy and main/scala – Ray Tayek Feb 6 at 9:45
@flesk Oh, sorry. I badly look to example... Some project store test under same level as src dir. – gavenkoa Feb 6 at 9:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.