2 回答
TA贡献1853条经验 获得超18个赞
我尝试使用日食。我对同一个 POM 文件使用了 maven clean 和 install 。它工作正常。
C:\users\youruser\.m2\settings.xml
看来你的文件有问题。可能是阻止 maven 下载依赖项的代理问题。请检查您的 settings.xml 文件。
TA贡献1866条经验 获得超5个赞
它看起来像代理问题,它阻止了依赖项的下载,所以settings.xml如果不存在,请进行一些更改或创建一个。
去c:\users\youruser\.m2\settings.xml.
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<proxy>
<id>myproxy</id>
<active>true</active>
<protocol>http</protocol>
<username>user</username> <!-- Put your username here -->
<password>pass</password> <!-- Put your password here -->
<host>123.45.6.78</host> <!-- Put the IP address of your proxy server here -->
<port>80</port> <!-- Put your proxy server's port number here -->
<nonProxyHosts>maven</nonProxyHosts> <!-- Do not use this setting unless you know what you're doing. -->
</proxy>
</proxies>
</settings>
添加回答
举报