0

我在我的工件(libs-release repos,以及它的 microsoft jdbc 4 连接器)中添加了一个 3rd 方 jar。

我遇到的问题是 maven/apache servicemix 无法下载 jar,因为它们具有以下设置,而且似乎他们总是首先尝试从远程存储库下载东西。

<mirrors>
<mirror>
  <mirrorOf>*</mirrorOf>
  <name>remote-repos</name>
  <url>http://...:8081/artifactory/remote-repos</url>
  <id>remote-repos</id>
</mirror>
</mirrors>
<profiles>
<profile>
  <repositories>
    <repository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>libs-release</name>
      <url>http://...:8081/artifactory/libs-release</url>
    </repository>
    <repository>
      <snapshots/>
      <id>snapshots</id>
      <name>libs-snapshot</name>
      <url>http://...:8081/artifactory/libs-snapshot</url>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>plugins-release</name>
      <url>http://...:8081/artifactory/plugins-release</url>
    </pluginRepository>
    <pluginRepository>
      <snapshots/>
      <id>snapshots</id>
      <name>plugins-snapshot</name>
      <url>http://...:8081/artifactory/plugins-snapshot</url>
    </pluginRepository>
  </pluginRepositories>
  <id>artifactory</id>
</profile>

有什么想法/我该如何解决这个问题?临时修复是将 jar 安装到我的本地存储库中,但我不想在其他工作电脑上这样做。

干杯。

4

1 回答 1

1

Artifactory 中的“remote-repos”存储库是一个虚拟存储库,它聚合了远程存储库:) 由于您将 jar 添加到本地存储库,因此无法从“remote-repos”解析它。将您的镜像指向“repo”应该可以完成这项工作。

于 2012-07-06T22:09:39.580 回答