Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Look for hierarchy standard for Java projects [closed]

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...

like image 662
gavenkoa Avatar asked May 19 '26 05:05

gavenkoa


1 Answers

Use maven structure (details):

my-app
|-- pom.xml
`-- src
    |-- main
    |   `-- java
    |       `-- com
    |           `-- mycompany
    |               `-- app
    |                   `-- App.java
    `-- test
        `-- java
            `-- com
                `-- mycompany
                    `-- app
                        `-- AppTest.java
like image 81
Stanislav Levental Avatar answered May 20 '26 19:05

Stanislav Levental



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!