I know that usually the maven structure looks like this:
pom.xml src - main - web - WEB-INF
However, I have a project that has the following structure
src - main web - WEB-INF
The last of the two above does not currently use maven. I started using maven for this project locally, creating a structure that conforms to the maven standard. However, now I want to automatically create this project with jenkins by pulling it from the original control (svn). So I would just like to add pom.xml, which knows that the web not inside src
Can this be done with maven?
birdy
source share