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]> 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
>

Reply via email to