gpt4 book ai didi

java - maven jar插件无法解析

转载 作者:行者123 更新时间:2023-12-02 05:29:39 26 4
gpt4 key购买 nike

我正在尝试学习 hyperjaxb3,因此我下载了包含 hibernate 和 maven 的采购订单教程的 Maven 项目的 zip 文件 from this link ,然后导入到eclipse中作为新的maven项目。但我在 pom.xml 中收到以下错误消息:

Plugin execution not covered by lifecycle configuration:  
org.jvnet.hyperjaxb3:maven-hyperjaxb3-plugin:0.5.6:generate (execution: default, phase: generate-sources)

我尝试通过将以下依赖项添加到 pom.xml 来解决此错误消息,我发现 at this link :

<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
</dependency>

但我仍然遇到同样的错误。没有堆栈跟踪,因为我没有尝试编译该程序。这是eclipse在pom.xml中给出的编译错误信息。

如何解决此错误?

完整的pom.xml可以查看by clicking on this link

最佳答案

具有执行目标的插件需要移至<pluginManagement>摆脱这个错误。它应该看起来像这样:

<build>
<plugins>
<!-- plugins -->
</plugins>
<pluginManagement>
<plugins>
<!-- plugins with execution goals -->
</plugins>
</pluginManagement>
</build>

关于java - maven jar插件无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25673755/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com