我是靠谱客的博主 美满帅哥,这篇文章主要介绍Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT in https://repository.apache.org/snaps,现在分享给大家,希望可以做个参考。
报错:
Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT in https://repository.apache.org/snapshots was cached in the local repository, resolution will not be reattempted until the update interval of apache.snapshots has elapsed or updates are forced
一般在maven找不到jar,
1,更换库地址--有可能网络不通
2,排除jar(不需要的情况) mvn de
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14<dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-server</artifactId> <version>2.0.5</version> <!-- 解决打包错误:Failure to find org.glassfish:javax.el:pom:3.0.1-b08-SNAPSHOT --> <exclusions> <exclusion> <groupId>org.glassfish</groupId> <artifactId>javax.el</artifactId> </exclusion> </exclusions> </dependency>
pendency:tree查找依赖关系
最后
以上就是美满帅哥最近收集整理的关于Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT in https://repository.apache.org/snaps的全部内容,更多相关Failure内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复