Skip to content

Commit d14d555

Browse files
authored
[MNGSITE-393] remove references to Maven 2 (#2438)
* [MNGSITE-393] remove references to Maven 2
1 parent 2be391f commit d14d555

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

maven-model/src/main/mdo/maven.mdo

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<p>An XSD is available at:</p>
5656
<ul>
5757
<li><a href="https://maven.apache.org/xsd/maven-v3_0_0.xsd">https://maven.apache.org/xsd/maven-v3_0_0.xsd</a> for Maven 1.1.</li>
58-
<li><a href="https://maven.apache.org/xsd/maven-4.0.0.xsd">https://maven.apache.org/xsd/maven-4.0.0.xsd</a> for Maven 2.0.</li>
58+
<li><a href="https://maven.apache.org/xsd/maven-4.0.0.xsd">https://maven.apache.org/xsd/maven-4.0.0.xsd</a> for Maven 3.0.</li>
5959
</ul>
6060
]]>
6161
</description>
@@ -679,10 +679,10 @@
679679
<field>
680680
<name>defaultGoal</name>
681681
<version>3.0.0+</version>
682-
<description>The default goal (or phase in Maven 2) to execute when none is specified for
683-
the project. Note that in case of a multi-module build, only the default goal of the top-level
684-
project is relevant, i.e. the default goals of child modules are ignored. Since Maven 3,
685-
multiple goals/phases can be separated by whitespace.</description>
682+
<description>The default goal to execute when none is specified for
683+
the project. In a multi-module build, only the default goal of the top-level
684+
project is relevant. That is, the default goals of child modules are ignored.
685+
Multiple goals can be separated by whitespace.</description>
686686
<type>String</type>
687687
</field>
688688
<field>
@@ -1087,10 +1087,13 @@
10871087
<version>3.0.0+</version>
10881088
<description>
10891089
<![CDATA[
1090-
The version requirement of the dependency, e.g. <code>3.2.1</code>. The actual version will be resolved based on the usage context.
1091-
Version requirement can also be specified as a range of versions, e.g. <code>[3.2.0,)</code>. This is discouraged as it may break <i>predictability</i> of resolved version.
1092-
See <a href="https://s.apache.org/dependency-version">dependency version requirement documentation</a>
1093-
and <a href="https://s.apache.org/transitive-dependencies-resolution">transitive dependencies resolution</a> for more details.
1090+
The version requirement of the dependency such as <code>3.2.1</code>.
1091+
The actual version will be resolved by dependency mediation.
1092+
The version requirement can also be
1093+
specified as a range of versions such as <code>[3.2.0,)</code>.
1094+
However, this is discouraged since it may break <i>predictability</i> of
1095+
the resolved version. See the <a href="https://maven.apache.org/pom.html#Dependency_Version_Requirement_Specification">Dependency Version Requirement Specification</a>
1096+
and <a href="https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Transitive_Dependencies">Transitive Dependencies</a> for more details.
10941097
]]>
10951098
</description>
10961099
<type>String</type>
@@ -1401,10 +1404,10 @@
14011404
<![CDATA[
14021405
Gives the status of this artifact in the remote repository.
14031406
This must not be set in your local project, as it is updated by
1404-
tools placing it in the reposiory. Valid values are: <code>none</code> (default),
1405-
<code>converted</code> (repository manager converted this from an Maven 1 POM),
1407+
tools placing it in the repository. Valid values are: <code>none</code> (default),
1408+
<code>converted</code> (repository manager converted this from a Maven 1 POM),
14061409
<code>partner</code>
1407-
(directly synced from a partner Maven 2 repository), <code>deployed</code> (was deployed from a Maven 2
1410+
(directly synced from a partner Maven repository), <code>deployed</code> (was deployed from a Maven
14081411
instance), <code>verified</code> (has been hand verified as correct and final).
14091412
]]>
14101413
</description>
@@ -2572,8 +2575,8 @@
25722575
<description>
25732576
<![CDATA[
25742577
The priority of this execution compared to other executions which are bound to the same phase.
2575-
<strong>Warning:</strong> This is an internal utility property that is only public for technical reasons,
2576-
it is not part of the public API. In particular, this property can be changed or deleted without prior
2578+
<strong>Warning:</strong> This is an internal utility property that is only public for technical reasons.
2579+
It is not part of the public API. In particular, this property can be changed or deleted without prior
25772580
notice.
25782581
]]>
25792582
</description>
@@ -3142,11 +3145,7 @@
31423145
<defaultValue>2.0</defaultValue>
31433146
<description><![CDATA[
31443147
For a plugin project (packaging is <code>maven-plugin</code>), the minimum version of
3145-
Maven required to use the resulting plugin.<br>
3146-
In Maven 2, this was also specifying the minimum version of Maven required to build a
3147-
project, but this usage is <b>deprecated</b> in Maven 3 and not checked any more: use
3148-
the <a href="https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html">Maven Enforcer Plugin's
3149-
<code>requireMavenVersion</code> rule</a> instead.
3148+
Maven required to use the resulting plugin.
31503149
]]>
31513150
</description>
31523151
<required>false</required>

0 commit comments

Comments
 (0)