Wendy, That worked like a charm.
Thanks for your help! James -----Original Message----- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Tue 8/8/2006 5:27 PM To: Maven Users List Subject: Re: cargo plugin question On 8/8/06, James Richards <[EMAIL PROTECTED]> wrote: > I am setting up Maven2 for a new project which has an existing codebase. I > specified the <artifactId> as, for example, "foo" and the <version> as > "2.0-SNAPSHOT". There are no problems building or assembling the war for > this web application. However, I would like to use a shorter URL when > deploying for development/integration testing. For this reason, I customized > the war plugin configuration: ... > Is there any way to make the cargo plugin recognize the war setting in the > war plugin? I'm not sure about the war plugin config, but I use <build>/<finalName> to set the name of the war, and this works with 'mvn package cargo:start' . <build> <finalName>foo</finalName> or <finalName>${artifactId}</finalName> HTH, Wendy -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
