On Mon, 28 Mar 2005 12:10:13 +0530, GOKULAM Jayaram <[EMAIL PROTECTED]> wrote: > Thanks for your suggestions, If I follow your suggestion, I need to put > the Jar and war files manually in the > C:\Documents and Settings\Username\.maven\repository folder.
It's your local mavven repository. > I do not want this jar & war files to be manually placed. > I want these files to be included in the ear file without this manual > dropping. > Is there a way to do this? Yes, if you have a project for your web application, the war:install goal will build the war file and copy it in the local repository. For a simple jar the goal is jar:install and for an ejb module it is ejb:install. You can make all these operations with one maven call using the multiproject plugin. Read this : http://maven.apache.org/using/multiproject.html -- Thomas Recloux --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
