If you invoke the following command: mvn -e install jboss:deploy
.. then first the super.pom is being install:install and then deploy:deploy. After this all other modules are installed (install:install) and deployed (deploy:deploy). Let say we have 4 modules: module_1 module_2 module_3 module_4 They all have one common parent super.pom. By invoking mvn -e install jboss:deploy, the install:install and deploy:deploy is executed for each module and the super.pom. How to instruct maven (or how to modify the pom) to say that for instance only module_3 has to be deployed. Because in my case module_3 is the WAR file. -- View this message in context: http://www.nabble.com/How-skip-exclude-artifacts-from-deployment-to-jboss-tp22529021p22529021.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
