mirror of https://github.com/apache/maven.git
[MNG-543]. Small patch for General FAQ and Plugin Overview.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@208644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0713fa12dd
commit
473b019ca8
|
@ -16,5 +16,18 @@
|
||||||
</p>
|
</p>
|
||||||
</answer>
|
</answer>
|
||||||
</faq>
|
</faq>
|
||||||
|
<faq id="available-plugins">
|
||||||
|
<question>How do I list available plugins?</question>
|
||||||
|
<answer>
|
||||||
|
<p>
|
||||||
|
To see a list of available plugins, browse the Maven 2 plugin repository
|
||||||
|
at <a href="http://www.ibiblio.org/maven2/plugins/">http://www.ibiblio.org/maven2/plugins/</a>.
|
||||||
|
Plugins are organized according to a directory structure that resembles
|
||||||
|
the standard Java package naming convention. To see a list of available
|
||||||
|
plugins from the Maven project look in the <a href="http://www.ibiblio.org/maven2/plugins/org/apache/maven/plugins/">org/apache/maven subfolder</a>
|
||||||
|
of this directory.
|
||||||
|
</p>
|
||||||
|
</answer>
|
||||||
|
</faq>
|
||||||
</part>
|
</part>
|
||||||
</faqs>
|
</faqs>
|
||||||
|
|
|
@ -97,8 +97,15 @@
|
||||||
</section>
|
</section>
|
||||||
<section name="Definitions">
|
<section name="Definitions">
|
||||||
<subsection name="What is a Plugin?">
|
<subsection name="What is a Plugin?">
|
||||||
|
Maven is a framework for the execution of plugin goals. Every action you
|
||||||
|
take in Maven is really just calling out to an existing maven plugin.
|
||||||
|
When you compile, clean, create a JAR, generate a site, or execute
|
||||||
|
unit tests, Maven is executing goals from the appropriate plugins.
|
||||||
</subsection>
|
</subsection>
|
||||||
<subsection name="What is a Mojo (And Why the H--- is it Named 'Mojo')?">
|
<subsection name="What is a Mojo (And Why the H--- is it Named 'Mojo')?">
|
||||||
|
MOJO is a play on POJO (Plain-old-Java-object), substituting "Maven" for
|
||||||
|
"Plain". A Mojo is really just a goal in Maven 2, and plug-ins consist of
|
||||||
|
any number of goals (Mojos).
|
||||||
</subsection>
|
</subsection>
|
||||||
<subsection name="What is the Build Lifecycle?">
|
<subsection name="What is the Build Lifecycle?">
|
||||||
</subsection>
|
</subsection>
|
||||||
|
@ -131,8 +138,10 @@
|
||||||
<section name="Resources">
|
<section name="Resources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="../plugin-management.html">Managing plugin configuration in
|
<a href="developing-plugins-with-marmalade.html">Developing Plugins with Marmalade</a>
|
||||||
large projects</a>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="mojo-api-specification.html">MOJO API Specification</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in New Issue