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