Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT in http://maven.aliyun.com/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of aliyun has elapsed or updates are forced.
3.0.1-b06-SNAPSHOT
3.0.1-b07-SNAPSHOT
3.0.1-b08-SNAPSHOT
3.0.1-b011-SNAPSHOT
都提示错误
原因: 本地仓库有.lastUpdated文件
现象:
解决:
将每个目录的.pom.lastUpdated文件后缀改为.pom
另外:剔除依赖
<!-- 解决打包错误: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>
参考源地址: