mirror of https://github.com/apache/maven.git
[MNG-5076] improved documentation of lifecycle.xml
Submitted by: Benson Margulies applied with modifications merged from 2.2 branch r1096335 git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1096338 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e518df2710
commit
2246876680
maven-plugin-api/src
|
@ -24,7 +24,8 @@ under the License.
|
||||||
<id>lifecycle-mappings</id>
|
<id>lifecycle-mappings</id>
|
||||||
<name>LifecycleMappings</name>
|
<name>LifecycleMappings</name>
|
||||||
<description><![CDATA[
|
<description><![CDATA[
|
||||||
Configuration of custom lifecycle mappings for the plugin.
|
Configuration of custom lifecycle mappings for the plugin, as generally stored in
|
||||||
|
<code>META-INF/maven/lifecycle.xml</code> in a plugin's jar artifact.
|
||||||
]]></description>
|
]]></description>
|
||||||
<defaults>
|
<defaults>
|
||||||
<default>
|
<default>
|
||||||
|
@ -36,7 +37,7 @@ under the License.
|
||||||
<class rootElement="true" xml.tagName="lifecycles" xsd.compositor="sequence">
|
<class rootElement="true" xml.tagName="lifecycles" xsd.compositor="sequence">
|
||||||
<name>LifecycleConfiguration</name>
|
<name>LifecycleConfiguration</name>
|
||||||
<version>1.0.0</version>
|
<version>1.0.0</version>
|
||||||
<description>Root element of the lifecycle.xml file.</description>
|
<description><![CDATA[Root element of the <code>lifecycle.xml</code> file.]]></description>
|
||||||
<fields>
|
<fields>
|
||||||
<field>
|
<field>
|
||||||
<name>lifecycles</name>
|
<name>lifecycles</name>
|
||||||
|
|
|
@ -1,7 +1,31 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
or more contributor license agreements. See the NOTICE file
|
||||||
|
distributed with this work for additional information
|
||||||
|
regarding copyright ownership. The ASF licenses this file
|
||||||
|
to you under the Apache License, Version 2.0 (the
|
||||||
|
"License"); you may not use this file except in compliance
|
||||||
|
with the License. You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing,
|
||||||
|
software distributed under the License is distributed on an
|
||||||
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, either express or implied. See the License for the
|
||||||
|
specific language governing permissions and limitations
|
||||||
|
under the License.
|
||||||
|
-->
|
||||||
|
|
||||||
<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
|
<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
|
||||||
<body>
|
<body>
|
||||||
|
<menu name="Reference">
|
||||||
|
<item name="lifecycle.xml" href="lifecycle-mappings.html"/>
|
||||||
|
</menu>
|
||||||
<menu ref="parent"/>
|
<menu ref="parent"/>
|
||||||
<menu ref="reports"/>
|
<menu ref="reports"/>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue