I am creating a web project and I was told that it has to reside inside the resources directory of an existing maven project
Here is the structure of the project
MavenProject
|-- src
| |-- main
| `-- resources
| `-- My-Web-Project
| |-- META-INF
| | `-- MANIFEST.MF
| |-- src
| | |-- classes
| | | |-- com
| | | | `-- example
| | | | `-- projects
| | | | `-- SampleAction.class
| `-- web
| |-- css
| |-- css
| |-- img
| |-- js
| |-- WEB-INF
| | `-- web.xml
| |-- index.jsp
| `-- secondary.jsp
|-- test
`-- pom.xml
As you can see there is already a pom.xml file for the MavenProject. I want to be able to deploy my web project WAR using the current pom.xml.
I want to know if it's possible to do this and how would I proceed to create the Maven Plugin.
I read this article but I don't know if it apply to my situation http://maven.apache.org/plugins/maven-war-plugin/usage.html
EDIT:
I am using tomcat app server.
As Mentioned before, My project "My-Web-Project" should be under "resources"