尝试this后出现错误
日志显示:
无法从任何已配置的存储库中解析原型org.apache.maven.archetypes:maven-archetype-webapp:1.0。 无法解析工件org.apache.maven.archetypes:maven-archetype-webapp:pom:1.0 无法将工件org.apache.maven.archetypes:maven-archetype-webapp:pom:1.0从中央传输到中央(https://repo.maven.apache.org/maven2):连接超时 无法从/到中央(https://repo.maven.apache.org/maven2)传输工件org.apache.maven.archetypes:maven-archetype-webapp:pom:1.0:连接超时
但是在流量中,它显示的是HTTP 200 PFB
[25 /一月/ 2019:17:40:20 +0530]“ GET https://repo.maven.apache.org/maven2/pl/project13/maven/git-commit-id-plugin/2.2.5/git-commit-id-plugin-2.2.5.jar HTTP / 1.1” 200 108711 200 108711 0 0 275 573 222 540 0
代理settings.xml:
<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>
<active>true</active>
<protocol>http</protocol>
<host>***</host>
<port>8080</port>
<username>***</username>
<password>***</password>
</proxy>
</proxies>
</settings>
任何帮助将不胜感激。