-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[MNGSITE-393] Remove Maven 1 and 2 references #2276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,8 +54,7 @@ | |
| <p>This is a reference for the Maven project descriptor used in Maven.</p> | ||
| <p>An XSD is available at:</p> | ||
| <ul> | ||
| <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> | ||
| <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> | ||
| <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> | ||
| <li><a href="https://maven.apache.org/xsd/maven-4.1.0.xsd">https://maven.apache.org/xsd/maven-4.1.0.xsd</a> for Maven 4.0.</li> | ||
| </ul> | ||
| ]]> | ||
|
|
@@ -771,7 +770,7 @@ | |
| <field> | ||
| <name>defaultGoal</name> | ||
| <version>3.0.0+</version> | ||
| <description>The default goal (or phase in Maven 2) to execute when none is specified for | ||
| <description>The default goal to execute when none is specified for | ||
| the project. Note that in case of a build with subprojects, only the default goal of the top-level | ||
| project is relevant, i.e. the default goals of subprojects are ignored. Since Maven 3, | ||
| multiple goals/phases can be separated by whitespace.</description> | ||
|
|
@@ -1210,7 +1209,7 @@ | |
| <name>version</name> | ||
| <version>3.0.0+</version> | ||
| <description> | ||
| The version of the dependency, e.g. {@code 3.2.1}. Since Maven 2, this can also be | ||
| The version of the dependency, e.g. {@code 3.2.1}. This can also be | ||
| specified as a range of versions. | ||
| </description> | ||
| <type>String</type> | ||
|
|
@@ -2380,7 +2379,7 @@ | |
| What to do when verification of an artifact checksum fails. Valid values are | ||
| {@code ignore}, | ||
| {@code fail} (default for Maven 4 and above) or | ||
| {@code warn} (default for Maven 2 and 3). | ||
| {@code warn} (default for Maven 3). | ||
| </description> | ||
| <type>String</type> | ||
| </field> | ||
|
|
@@ -3384,10 +3383,6 @@ | |
| <description><![CDATA[ | ||
| For a plugin project (packaging is {@code maven-plugin}), the minimum version of | ||
| Maven required to use the resulting plugin.<br> | ||
|
||
| In Maven 2, this was also specifying the minimum version of Maven required to build a | ||
| project, but this usage is <b>deprecated</b> in Maven 3 and not checked any more: use | ||
| the <a href="https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html">Maven Enforcer Plugin's | ||
| {@code requireMavenVersion} rule</a> instead. | ||
| ]]> | ||
| </description> | ||
| <required>false</required> | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't
<defaultValue>2.0</defaultValue>(two lines up) be changed to<defaultValue>3.0</defaultValue>then?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, I'd rather avoid any change of default values in model 4.0.0. But maybe we could change the default to
4.0for model4.1.0. Though this may not be possible to do that in the parser. So not sure it's worth it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense, but this is a doc only change. Code changes need a separate issue and PR.