maven仓库提⽰“Downloading:http:repo.maven.apache.。。
问题描述
原因
⽹上查了很多资料发现了解到所有⾃定义l都是继承⾃,所以maven项⽬下载⼀些jar包时,默认会从中央仓库下载
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>repo./maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Central Repository</name>
<url>repo./maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
解决办法
在项⽬的pom⽂件中⼿动指定下私有仓库
<repositories>
<repository>
<id>hanxiaohan</id>下载apache
<url>host:port/content/groups/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>hanxiaohan</id>
<url>host:port/content/groups/public</url>
</pluginRepository>
</pluginRepositories>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。