Hi Anshuman, > -----Original Message----- > From: Anshuman Srivastava [mailto:[EMAIL PROTECTED] > Sent: vendredi 28 avril 2006 06:37 > To: Maven Users List > Subject: Re: Deployment of war file using JBOSS > > Hi Vincent > Thanks for your concern.My problem is that I have already installed > jboss-4.0.4 so I dont need to install it from a zip file.Where do I need > to > put this entry -- > > <configuration> > <!-- Container configuration --> > <container> > <containerId>jboss4x</containerId> > <home>c:/boss-4.0.4</home> > </container> > > <!-- Deployer configuration --> > <deployer> > <type>local</type> > <deployables> > <deployable> > <groupId>active.DMS</groupId> > <artifactId>DMS</artifactId> > <type>war</type> > <properties> > <context></context> > </properties> > <pingURL></pingURL> > </deployable> > </deployables> > </deployer> > </configuration> > I tried to put it after </build>,before <build>, between <build> and > </build> but everytime it is giving me error that -"Reason: Parse error > reading POM. Reason: Unrecognised tag: 'configuration' (position: > START_TAG > seen ...</dependencies>\r\n\t <configuration>... @163:18)" > > I believe that i need to put some plugin entry for jboss-4.0.4and > distribution management section for deployment.
Nope. You're configuring the cargo plugin and thusn, as usual, you need to put that plugin config in <build> as shown on the link I gave you: http://cargo.codehaus.org/Maven2+plugin :-) [snip] -Vincent ___________________________________________________________________________ Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos services préférés : vérifiez vos nouveaux mails, lancez vos recherches et suivez l'actualité en temps réel. Rendez-vous sur http://fr.yahoo.com/set --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
