我在localhost中设置了artifactory(我在设置我的服务器之前尝试使用localhost),但是当我在maven项目中使用这个repo时,我无法检索我的libs。有什么建议吗?
答案 0 :(得分:5)
Artifactory 为您提供small utility 生成 Maven设置文件,该文件基于Artifactory中配置的存储库和您的选择;假设你的存储库配置正确,这个实用程序通常做得很好。
答案 1 :(得分:0)
尝试(将ID ClaudioStas更改为中央):
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>libs-release</name>
<url>http://localhost:8081/artifactory/libs-release</url>
</repository>
<repository>
<snapshots />
<id>snapshots</id>
<name>libs-snapshot</name>
<url>http://localhost:8081/artifactory/libs-snapshot</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>plugins-release</name>
<url>http://localhost:8081/artifactory/plugins-release</url>
</pluginRepository>
<pluginRepository>
<snapshots />
<id>snapshots</id>
<name>plugins-snapshot</name>
<url>http://localhost:8081/artifactory/plugins-snapshot</url>
</pluginRepository>
</pluginRepositories>