> 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: [email protected] For additional commands, e-mail: [email protected]
