You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2007/11/29 22:02:00 UTC

svn commit: r599574 - /maven/plugins/trunk/maven-deploy-plugin/src/site/fml/faq.fml

Author: dennisl
Date: Thu Nov 29 13:01:57 2007
New Revision: 599574

URL: http://svn.apache.org/viewvc?rev=599574&view=rev
Log:
o Change the wording.
o Add formating.

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=599574&r1=599573&r2=599574&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 Thu Nov 29 13:01:57 2007
@@ -21,27 +21,33 @@
 <faqs id="FAQ" title="Frequently Asked Questions">
  <part id="General">
    <faq id="question">
-     <question>Unsupported Protocol Error when deploying a 3rd party jar. What should I do?</question>
+     <question>I get an Unsupported Protocol Error when deploying a 3rd party jar. What should I do?</question>
      <answer>
        <p>
-            When using deploy-deploy-file goal and encountered this error
+         If you are using the <code>deploy:deploy-file</code> goal and encounter
+         this error:
        </p>
        <p>
-            "Error deploying artifact: Unsupported Protocol: 'ftp': Cannot find wagon which supports the requested protocol: ftp"
+         <i>"Error deploying artifact: Unsupported Protocol: 'ftp': Cannot find
+         wagon which supports the requested protocol: ftp"</i>
        </p>
        <p>
-            You only have to place the appropriate wagon provider to your %M2_HOME%/lib.
-            In this case the provider needed is ftp, so we have to place the wagon-ftp jar to the lib of your m2 installation.
+         Then you need to place the appropriate wagon provider in your
+         <code>%M2_HOME%/lib</code>. In this case the provider needed is ftp,
+         so we have to place the wagon-ftp jar in the lib directory of your
+         Maven 2 installation.
        </p>
        <p>
-            If the error description is something like
+         If the error description is something like this:
        </p>
        <p>
-            "Error deploying artifact: Unsupported Protocol: 'ftp': Cannot find wagon which supports the requested protocol: ftp
-            org/apache/commons/net/ftp/FTP"
+         <i>"Error deploying artifact: Unsupported Protocol: 'ftp': Cannot find
+         wagon which supports the requested protocol: ftp
+         org/apache/commons/net/ftp/FTP"</i>
        </p>
        <p>
-            Place also the commons-net jar to %M2_HOME%/lib.
+         Then you need to place the commons-net jar in
+         <code>%M2_HOME%/lib</code>.
        </p>
      </answer>
    </faq>