0

I'm working on a Maven multi-module project, with the following structure:

erm-project <pom>
|-- erm-commons <jar>
|-- erm-web <war>
|-- erm-backend <jar>

Within the parent project erm-project there is a src/ folder. Is a src/ folder neccessary for a pom type project as there will never be source-code in it?

mhmpl
  • 1,045
  • 2
  • 13
  • 29

1 Answers1

1

No, it isn't. You can download a sample Maven multi-module project from Sonatype here to see how it is all laid out.

Aurifier
  • 197
  • 2
  • 9
Vidya
  • 29,932
  • 7
  • 42
  • 70