Ok. Thanks for confirming. I did that and I ran into some issues where jndi lookups were failing. Looks like I had some IBM bindings in my project. I think I'm on the right track now.
Thanks, Matt ________________________________ From: quints quad [[email protected]] Sent: Monday, August 16, 2010 3:49 PM To: [email protected] Subject: Re: [mojo-user] was6 maven plugin That argument is set when you create the default bindings for the ear. Your execution would look something like the following: <properties> <property> <VirtualHost>default_host</VirtualHost> </property> </properties> ... <execution> <id>deploy-snapshot</id> <phase>deploy</phase> <goals> <goal>wsDefaultBindings</goal> <goal>installApp</goal> </goals> <configuration> <virtualHost>${VirtualHost}</virtualHost> <forceBindings>true</forceBindings> </configuration> </execution> You can look at more here: http://mojo.codehaus.org/was6-maven-plugin/wsDefaultBindings-mojo.html On Mon, Aug 16, 2010 at 2:11 PM, Matt Goodwin <[email protected]<mailto:[email protected]>> wrote: How do you pass parameters to the was6:installApp goal. I would like to pass the -MapWebModToVH argument to the installApp goal. Thanks, Matt
