> and hence the build section of my pom looks like this: > <build> > <pluginManagement> > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > > <artifactId>maven-eclipse-plugin</artifactId>
You need to also add those plugins into the build section itself. One fix would be to simply delete the <pluginManagement> at the top and corresponding close node. PluginManagement simply allows you to manage plugins with a shared configuration across multiple projects for example. Without declaring the plugins themselves in the build, those configurations are not inherited into this specific build, and thuse are ignored. If you check the page you sent, you'll see the plugin node is directly inside build, not in pluginManagement as you have configured. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
