My project folder structure is different from that of Maven. Can I still use Maven?
If yes .. I want to use webContent folder instead of webapp .. how can i do that?
i already changed java folder to javaSource using .. can anyone help
|
|
|
You can have whatever structure you want and still use maven. Just define directory with your web resources.
|
|||
|
|
|
Have a look at the war plugin usage page: http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html In your case, you'll need to set the warSourceDirectory (in a <configuration> tag in the war-<plugin> section.) |
|||
|
|