The project hierarchy

Report a typo

What is the correct file hierarchy of a Maven-based project?


a)
maven-app
└── main
    ├── pom.xml
    ├── src
    └── test 

b)
maven-app
└── src
    └── main
        ├── pom.xml
        └── test 

c)
maven-app
├── pom.xml
├── src
├── main
└── test 

d)
maven-app
├── pom.xml
└── src
    ├── main
    └── test 

e)
maven-app
├── pom.xml
└── java
    ├── src
    │   └── main
    └── test
Select one option from the list
___

Create a free account to access the full topic