为什么 pom.xml 的 model 版本是必需的并且总是设置为4.0.0?

我注意到 Maven 的 pom.xml<modelVersion></modelVersion>总是设置为 4.0.0

你能帮我理解这个标签的重要性吗? 为什么它应该被设置为 4.0.0

45013 次浏览

It is always set to 4.0.0 in Maven 2 and 3, because, at present, there is no other model.

Notice that modelVersion contains 4.0.0. That is currently the only supported POM version, and is always required. [source]

But it wouldn't necessarily need to always be set to 4.0.0 if there was another version of the model. A POM has to comply with a model. Let's say Maven 4 comes up with model 4.1. If you write your pom to comply with 4.1, it wouldn't be compatible with Maven 3 and model 4.0.0.

It's defined as a mandatory, possibly to enforce a specific XML model in case new models are defined.

model version is the version of project descriptor your POM conforms to. It needs to be included and is set. The value 4.0.0 just indicated that it is compatible Maven 3.

The Correct answer should be the combination of the answers by @Toumi and @Boj. Also have a look at https://cwiki.apache.org/confluence/display/MAVEN/POM+Model+Version+5.0.0 for more background of this.

modelVersion - containing the model version of the POM. Maven 1.x used a model which contained a 3.0.0 element as an immediate child of the root. Maven 2.x / 3.x has used a 4.0.0 element.

version - containing the version of the project. If this attribute is missing then the parent element must be present and the version will be inherited from the parent project.