The new plugin requires a plugin configuration. I added it to the common/build/pom.xml,
but I didn't add it to jbossxb. I'm planning to eventually add the configuration
to the parent pom so that configuration will be inherited in each project pom.
Here is the extra config if you want to try adding it to the jbossxb pom:
| <plugin>
| <groupId>jboss.maven-plugins</groupId>
| <artifactId>jboss-deploy-maven-plugin</artifactId>
| <version>1.0-SNAPSHOT</version>
| <executions>
| <execution>
| <goals>
| <goal>jboss-deploy</goal>
| </goals>
| </execution>
| </executions>
| <configuration>
| <!-- In order to use this setting jboss.repository.root must be set on
the command line or in
| settings.xml. More information can be found here:
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossBuildMaven -->
| <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
| </configuration>
| </plugin>
|
You will have to add it to the build plugins section of the pom. Similar to how it is in
the current version of common/build/pom.xml
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4026252#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...