I added version 2-SNAPSHOT of the parent pom to the repository that includes the eclipse
plugin configuration.
I also added a 1.1 version of the jboss-deploy plugin that will deploy all artifacts
attached to a project (including aggregates). I added this to the pluginManagement
section of the parent. This means that it is not enabled by default in the child poms.
To enable the deploy plugin in child projects, you just have to reference it in the
plugins section like this:
| <plugins>
| <plugin>
| <groupId>jboss.maven-plugins</groupId>
| <artifactId>jboss-deploy-maven-plugin</artifactId>
| </plugin>
| </plugins>
|
Or you can just copy the configuration from the parent.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4030375#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...