You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Wayne Fay <wa...@gmail.com> on 2009/02/12 22:21:59 UTC

Re: FW: Maven antrun plugin

> Sorry for the repost, but I'm not sure if this went through as I was not on the subscription list.
It did.

>      <pluginManagement>
>         <plugins>
>            <plugin>
>               <groupId>org.apache.maven.plugins</groupId>
>               <artifactId>maven-antrun-plugin</artifactId>

Node pluginManagement is used strictly for configuring plugins. The
plugins are not bound to the execution unless you declare them in the
<build><plugins> node as well.

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
</plugins>
</build>

Wayne

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org