我试图在日食中用Maven创建一个没有运气的项目。我已经研究和阅读,然后在其他线程上尝试了其他解决方案,但我没有运气。
我的settings.xml文件已设置并已填写。
每当我尝试制作maven项目时,我总会收到此错误:
无法获取插件执行的参数编码值 default-resources插件 org.apache.maven.plugins:maven-resources-plugin:2.6或其中一个 无法解决依赖关系:无法转移 org.codehaus.plexus:plexus-interpolation:jar:1.13 from https://repo.maven.apache.org/maven2被缓存在当地 存储库,在更新之前不会重新尝试解析 中心间隔已经过去或强制更新。原始错误: 无法转移神器 org.codehaus.plexus:plexus-interpolation:jar:1.13 from / to central (https://repo.maven.apache.org/maven2):操作被取消了。
答案 0 :(得分:1)
您已尝试过哪些解决方案?
几个月前我遇到了同样的问题,那是因为我在代理人后面。 如果它与您相同,您可以查看您的Web浏览器配置。从配置代理的documentation:
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>proxyHost</host>
<port>proxyPort</port>
<username>proxyUser</username>
<password>userPassword</password>
<nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
</proxy>