I have a project created in Eclipse that has roughly this structure:
- src
- conf
- test
- WebContent
- WEB-INF
When integrating with maven the structure should be more like this:
- src
- main
- java
- resources
- webapp
- WEB-INF
- test
- main
I can either modify the pom to work on the old structure, but I prefer to have the classic maven structure. Is there anyway to move the files in the new structure in order to keep their history? How can I do that?