无法解析以下工件:javax.jms:jms:jar:1.1
我正在尝试编译一个 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]
我知道 这篇关于 Sun jars 的 Maven 帖子,但它并没有解决问题。
是否有可以在我的 pom.xml
中指定的存储库?
I am trying to compile a maven project, but I systematically get the following error message:
[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]
I know about this maven post about Sun jars, but it does not solve the problem.
Is there a repository I can specify in my pom.xml
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
感谢您的建议。在阅读 this。事实证明,这些依赖项来自对 ZooKeeper 的依赖项。
我修改了我的 pom.xml 如下,它解决了问题:
Thanks for the suggestions. I finally found a solution to this problem after reading this. It turns out that these dependencies were coming from a dependency to ZooKeeper.
I modified my pom.xml as following and it solved the problem:
如果有人仍然想使用jms1.1,那么添加公共jboss存储库,maven会找到它...
项目->依赖项:
项目->存储库:
它有效 -
If anyone still wants to use jms1.1 then add the public jboss repository and maven will find it...
project->dependencies:
project->repositories:
It works -
Log4 版本 1.2.17 自动解决了该问题,因为它依赖于 geronimo-jms。我在 log4j-1.2.15 版本中遇到了同样的问题。
添加了更多有关该问题的信息,
使用 1.2.17 解决了编译时的问题,但服务器(Karaf)使用的是 1.2.15 版本,因此在运行时产生冲突。因此我不得不切换回 1.2.15。
JMS 和 JMX api 在运行时可供我使用,因此我没有导入 J2ee api。
我所做的是我使用了 1.2.17 上的编译时依赖项,但在运行时删除了它。
Log4 version 1.2.17 automatically resolves the issue as it has depency on geronimo-jms. I got the same issue with log4j- 1.2.15 version.
Added with more around the issue
using 1.2.17 resolved the issue during the compile time but the server(Karaf) was using 1.2.15 version thus creating conflict at run time. Thus I had to switch back to 1.2.15.
The JMS and JMX api were available for me at the runtime thus i did not import the J2ee api.
what i did was I used the compile time dependency on 1.2.17 but removed it at the runtime.
如果您不想修改设置,则另一种解决方案:
下载 jms-1.1.jar 来自 JBoss 存储库 然后:
mvn install:install-file -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar -Dfile =jms-1.1.jar
Another solution if you don't want to modify your settings:
Download jms-1.1.jar from JBoss repository then:
mvn install:install-file -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar -Dfile=jms-1.1.jar
事实上,此问题的真正解决方案是使用 Maven Central 上提供的 jms-api-1.1-rev-1.jar 工件: http://search.maven.org/#artifactdetails%7Cjavax.jms%7Cjms-api%7C1.1-rev-1% 7Cjar
In fact the real solution for this issue is to use the jms-api-1.1-rev-1.jar artifact available on Maven Central : http://search.maven.org/#artifactdetails%7Cjavax.jms%7Cjms-api%7C1.1-rev-1%7Cjar
尝试使用 mvn
cpu
选项强制更新:Try forcing updates using the mvn
cpu
option:当我开始在项目中使用以下 log4j (1.2.15) 的 maven 依赖版本时,我也遇到了同样的问题。
以下错误向我抛出。
我开始使用以下 log4j (1.2.17) 版本,它帮助我解决了这个问题,而无需任何与配置相关的修复。
I also faced the same issue when I started using following maven dependency version for log4j (1.2.15) in my project.
Following error was thrown at me.
I started using following log4j (1.2.17) version and it helped me solve this issue without any configurations related fixes.
对 ibliblio 和 java.net 存储库的检查显示,两者中都不存在与 jmx 相关的 jar。我认为您应该手动下载 jms 并按照讨论的方式在本地安装它们 在这里。
A check of
ibliblio
andjava.net
repositories reveal that jmx related jar is not present in either. I think you should manually download jms and install them locally as discussed here.您导入一个依赖项,该依赖项依赖于
com.sun.jmx:jmxri:jar:1.2.1
等,但依赖于com.sun.jmx:jmxri:jar:1.2。 1
在中央存储库中找不到,因此您最好尝试导入其他版本。
这里假设你的依赖可能是log4j,你可以尝试导入
log4j:log4j:jar:1.2.13
。You import one dependency, and this dependency is dependent on
com.sun.jmx:jmxri:jar:1.2.1
and others, butcom.sun.jmx:jmxri:jar:1.2.1
cannot be found in central repository,so you'd better try to import another version.
Here suppose your dependency may be log4j, and you can try to import
log4j:log4j:jar:1.2.13
.可能不是完全相同的问题。但同一行有一篇很好的文章 这里
May not be the exactly same problem. but there is a nice article on the same line Here