maven问题总结

1、错误

was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced 

需要到mvn repository目录删除  *lastUpdated文件

find ./ -name *lastUpdated -exec rm {} ;

2、打包以后,resource文件的配置应该打到最后的jar包,这个可以利用插件    maven-resources-plugin 实现

3、

原文地址:https://www.cnblogs.com/amazement/p/7495386.html