I would like to use maven as build/release management/manage the dependencies tool for our web application.
Our Web application project directory structure as below
-WebContext
------|src
--------|com.company
------|WEB-INF
------|pages
as per maven, directory structure should be as below
-WebContext
------|src
--------|main
------------|java
------------|test
------------|resources
------------|webapp
since code(old directory structure ) is maintained by SCM (CVS) if we convert to the new maven directory structure following are the questions
If i changed directory structure then files need to be recommit in CVS ? if yes it is not possible to commit the all files as project size is huge and there were many tags exists in SCM and there exists client releases.
Is there any best way to convert as maven project without disturbing the existing structure?
Currently Resources are in root directory let them to be as it is instead of moving to src/main/resources
I think it is common problem for all and hope there is a solution for this, can any one guide me to use maven as build/release management tool.
Thanks Dhorrairaajj