Maven 错误:插件描述符包含错误版本
我正在尝试发布一个具有自定义插件依赖项的项目。 Maven 抛出一个错误说:
<块引用>[INFO] [INFO] 内部错误 插件管理器获取插件 'com.xxx.xxx.tools:生成 xxx-config': 插件 'com.xxx.xxx.tools:生成-xxx-config:0.0.1' 有一个无效的描述符:[INFO] 1) 插件的描述符包含错误 版本:0.0.1-SNAPSHOT
任何帮助将不胜感激。
I'm trying to release a project with a custom plug-in dependency. And maven throws an error saying,
[INFO] [INFO] Internal error in the
plugin manager getting plugin
'com.xxx.xxx.tools:generate-xxx-config':
Plugin
'com.xxx.xxx.tools:generate-xxx-config:0.0.1'
has an invalid descriptor: [INFO] 1)
Plugin's descriptor contains the wrong
version: 0.0.1-SNAPSHOT
Any help will be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
插件 jar 内有一个 plugin.xml 文件,其中包含插件版本。从 2.2 开始,Maven 验证文件中的值与 pom 和目录结构中的值是否匹配。
Inside plugin jar there is a plugin.xml file that contains the plugin version. From 2.2 Maven validates that value from file matches the one from pom and directory structure.
好的。这就是我发现的。我使用的是 Maven 版本 2.2.1。我将其更改为 2.0.11 并且有效。
无法理解为什么它不适用于 2.2.1。
Ok. This is what I found. I was using maven version 2.2.1. I changed it to 2.0.11 and it worked.
Cannot fathom why it did not work with 2.2.1.