gpt4 book ai didi

maven-2 - 无法解析以下工件 : javax. jms :jms:jar:1. 1

转载 作者:行者123 更新时间:2023-12-03 05:17:58 24 4
gpt4 key购买 nike

我正在尝试编译一个 Maven 项目,但我系统地收到以下错误消息:

[ERROR]Failed to execute goal on project ...:
Could not resolve dependencies for project ...:war:1.0.0:
The following artifacts could not be resolved: javax.jms:jms:jar:1.1,
com.sun.jdmk:jmxtools:jar:1.2.1, com.sun.jmx:jmxri:jar:1.2.1:
Failure to find javax.jms:jms:jar:1.1 in http://mirrors.ibiblio.org/maven2/
was cached in the local repository, resolution will not be reattempted until
the update interval of maven2-repository.ibiblio.mirror has elapsed or
updates are forced -> [Help 1]

我知道this maven post about Sun jars ,但这并不能解决问题。

我可以在 pom.xml 中指定一个存储库吗?

最佳答案

感谢您的建议。阅读this后我终于找到了解决这个问题的方法。事实证明,这些依赖项来自对 ZooKeeper 的依赖项。

我修改了我的 pom.xml 如下,它解决了问题:

    <dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.3.2</version>
<exclusions>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
</exclusions>
</dependency>

关于maven-2 - 无法解析以下工件 : javax. jms :jms:jar:1. 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4908651/

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