关于 build.plugins.plugin.version 的 Maven 3 警告
Posted
技术标签:
【中文标题】关于 build.plugins.plugin.version 的 Maven 3 警告【英文标题】:Maven 3 warnings about build.plugins.plugin.version 【发布时间】:2011-05-06 14:25:32 【问题描述】:自从我更新到 Maven 3 后,我在每次构建时都会收到以下警告消息:
我怎样才能摆脱这些警告?
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for proj:id:jar:3.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ line 195, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 204, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 227, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 215, column 15
[WARNING] 'reporting.plugins.plugin.version' for org.codehaus.mojo:jdepend-maven-plugin is missing. @ line 271, column 15
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
【问题讨论】:
在 Maven 3.5.3 中,这现在是一个错误。不要忽视警告!感谢@gavenkoa 解答如何查找插件版本。 【参考方案1】:在pom.xml
文件中的<plugin>
<artifactId>
之后添加一个<version>
元素。找到以下文本:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
给它添加版本标签:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
警告应该得到解决。
关于这个:
'build.plugins.plugin.version' 用于 org.apache.maven.plugins:maven-compiler-plugin 丢失
很多人都提到了为什么会出现这个问题,但没有提出解决办法。我需要做的就是进入我的项目的 POM 文件,并添加<version>
标签,如上所示。
要发现版本号,一种方法是在 Maven 运行完成后查看它的输出。如果您缺少版本号,Maven 将显示其默认版本:
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ entities ---
获取该版本号(如上面的 2.3.2
所示)并将其添加到您的 POM,如图所示。
【讨论】:
@JBT 不明白为什么? maven 构建是为了稳定,所以应该明确定义一个将使用的版本。这就是 Maven 要求它的原因。正如消息中所说,“强烈建议解决这些问题,因为它们会威胁到您构建的稳定性。” 这有点奇怪,因为只有在项目 POM 文件中添加了插件条目时才会出现此问题。有效的 POM 具有版本元素,但您仍需要向项目 POM 添加版本元素以删除此警告。 我收到与原始问题相同的警告,但我的 pom.xml 没有对 maven-compiler-plugin 的任何引用。我错过了什么?谢谢! 对我不起作用。插件版本标签已经存在。 2.3.2 是最新版本吗?你怎么知道是哪一个?还是没关系?【参考方案2】:运行方式:
$ mvn help:describe -DartifactId=maven-war-plugin -DgroupId=org.apache.maven.plugins对于没有版本的插件。你得到输出:
名称:Maven WAR 插件 描述:从项目构建 Web 应用程序存档 (WAR) 文件 输出及其依赖项。 组 ID:org.apache.maven.plugins 工件 ID:maven-war-plugin 版本:2.2 目标前缀:战争使用输出中显示的版本。
更新如果您想在版本列表中进行选择,请使用http://search.maven.org/ 或http://mvnrepository.com/ 请注意,您最喜欢的Java IDE 必须有Maven 包搜索对话框。只需检查文档。
超级更新我也使用:
$ mvn dependency:tree
$ mvn dependency:list
$ mvn dependency:resolve
$ mvn dependency:resolve-plugins # <-- THIS
最近我发现了如何获取插件(或库)的最新版本,因此不再需要谷歌搜索或访问 Maven Central:
$ mvn versions:display-dependency-updates
$ mvn versions:display-plugin-updates # <-- THIS
【讨论】:
+1。另一种更紧凑的变体:mvn help:describe -Dplugin=groupId:artifactId
确实这并没有给出解决方案,但无论如何它都是有价值的内容:如何才能找到使用/预期的版本。也许值得一提的是,使用 pluginManagement-tag 将这些插件版本放在父 pom 中:***.com/a/10483284/1023341【参考方案3】:
Maven 3 对 POM 结构的限制更大。例如,您必须设置插件的版本。
在 maven 3.1 中,这些警告可能会破坏您的构建。 maven2和maven3的变化比较多:https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+Compatibility+Notes
【讨论】:
【参考方案4】:从以下位置获取最新版本信息:
https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin
点击最新版本(或您想使用的版本),您将看到依赖信息(截至 2019-05 为 3.8.1):
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</dependency>
您可能希望为插件标签使用版本标签和注释。
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source />
<target />
</configuration>
</plugin>
如果您愿意,可以修改您的 pom 以在属性标签中包含版本信息,如另一个答案中所述。
【讨论】:
【参考方案5】:我正在为我的项目使用父 pom,并且想在一个地方指定版本,所以我使用属性来指定版本:
父pom:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
....
<properties>
<maven-compiler-plugin-version>2.3.2</maven-compiler-plugin-version>
</properties>
....
</project>
项目 pom:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
....
<build>
<finalName>helloworld</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>$maven-compiler-plugin-version</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
另请参阅: https://www.allthingsdigital.nl/2011/04/10/maven-3-and-the-versions-dilemma/
【讨论】:
我认为对插件版本使用 pluginManagement 可能会更好,或者至少更自然。 除非您在子 POM 中有一个覆盖的 pluginManagement。【参考方案6】:这里的答案很好。我想添加“为什么在 Maven3 中添加元素”。 在Maven 3.x Compatibility Notes
插件元版本解析 在内部,Maven 2.x 使用特殊的版本标记 RELEASE 和 LATEST 来支持自动插件版本解析。这些元版本在声明元素中也得到了认可。为了可重现的构建,Maven 3.x 不再支持在 POM 中使用这些元版本。因此,用户需要将这些元版本替换为具体版本。
我也在maven-compiler-plugin - usage找到了
注意:如果您不指定插件的版本,Maven 3.0 会发出警告。
【讨论】:
【参考方案7】:在 pom.xml 中搜索“maven-jar-plugin” 并添加版本标签 行家版本
【讨论】:
但是什么版本? mvnrepository.com/artifact/org.apache.maven.plugins/…以上是关于关于 build.plugins.plugin.version 的 Maven 3 警告的主要内容,如果未能解决你的问题,请参考以下文章