Author: wsmoak Date: Sat Feb 23 07:56:58 2008 New Revision: 630460 URL: http://svn.apache.org/viewvc?rev=630460&view=rev Log: [MDEPLOY-63] Add a faq explaining how to skip deployment. TODO: <pre> sections in .fml files do not display properly
Modified: maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml Modified: maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml?rev=630460&r1=630459&r2=630460&view=diff ============================================================================== --- maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml (original) +++ maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml Sat Feb 23 07:56:58 2008 @@ -51,5 +51,24 @@ </p> </answer> </faq> + <faq id="skip"> + <question>I don't want to deploy one of the artifacts in my multi-module build. Can I skip deployment?</question> + <answer> + <p> + Yes, you can skip deployment of individual modules by configuring the deploy plugin as follows: + </p> + <p> + <pre> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <version>X.Y</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </pre> + </p> + </answer> + </faq> </part> </faqs>