First, re-arrange your project like this :
http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html

Then, you write your pom.xml (either look for examples, or let Maven
generate your project with the command) :
mvn archetype:generate
Choose : 18: internal -> maven-archetype-webapp (A simple Java web application)
enter any groupId, artifactID, version (1.0-SNAPSHOT). And you'll get
a simple project set up (with an pom.xml example).




2009/1/29 MacMohan <manmohanaror...@gmail.com>:
>
> Hi, i m new to maven and have been asked to set up new development
> environment in my office. Mine is a small office of 8-10 developers. Till
> now we have CVS on one of remote servers and app servers(TOMCAT 5.x) running
> on individual developer machine. we use Eclipse 3.3 as Java IDE. Al the
> developers commit their work respective works from their machines and we
> create WAR file of the application manually through ANT using build.xml
> file. Our application is a non-EJB application with the following folder
> structure.
>
> myApplication
> |-- CSS(folder)
> |-- images
> |-- java scripts(folder)
> |-- JSP(folder)
> |-- WEB_INF(folder)
> |    |-- classes
> |    |-- lib
> |    |-- src
> |    |  |-- com
> |    |      |-- companyName
> |    |          |-- applicationName
> |    |              |-- Java files in their respective folders
> |    |
> |    |
> |    |--struts-config.xml
> |
> |--build.xm
> |--build.properties
>
> In the new development environment, we need CVS on a remote server, and
> Maven doing the ANT thing automatically on week-ends. We need Maven to
> compile our project and package it to WAR file and deploy it at a specific
> location on the server.
>
> I have been reading Maven 2.0.9 documentation and other helping material
> from last 3-4 days, but couldn't figure out how to use it practically. Where
> to put my applications JAVA files, lib folder, JSP's, etc.
>
> Please help.
> --
> View this message in context: 
> http://www.nabble.com/How-do-i-use-maven-in-my-development-environment-tp21722621p21722621.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to