0

我已经在 localhost 中设置了工件(我在设置服务器之前尝试使用 localhost),但是当我在我的 maven 项目中使用这个 repo 时,我无法检索我的库。有什么建议么?

4

2 回答 2

5

Artifactory为您提供了一个小实用程序,它可以根据 Artifactory 中配置的存储库和您的选择生成一个Maven 设置文件;假设您的存储库已正确配置,此实用程序通常会做得很好。

于 2012-10-20T17:40:47.427 回答
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>
于 2012-10-20T16:46:16.177 回答