2

是否可以先下载组织本地 maven 存储库所需的 jar,然后再下载到机器存储库中使用。

我的情况是:

1.我的项目正在使用 abc.jar 并且它不存在于我的本地存储库中,然后我希望它首先从公共存储库下载到组织本地 maven 存储库。

2.然后我的项目将使用来自orgnisation本地maven存储库的这个abc.jar。

是否有可能或者我想手动将每个 jar 部署到组织本地 maven 存储库。

因为现在如果我的项目需要任何 jar,那么它会在本地 maven 存储库中找到它,如果找不到,则直接将其下载到我的本地机器 ~/.m2/repository 文件夹。我想先下载到组织本地存储库,然后再下载到我的本地机器。现在我的 Settings.xml 看起来像:

<?xml version="1.0" encoding="UTF-8"?>
<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">

  <servers>

  <server>
      <id>local.orgnisation.repo</id>
      <username>pallavi</username>
      <password>pallavi</password>
    </server>
    </servers>

<mirrors>
    <mirror>
      <id>local.orgnisation.repo</id>
      <name>Local repository</name>
      <url>http://local.orgnisation.repo/artifactory/repo</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
  </mirrors>

<!--<profiles>
    <profile>
      <id>default</id>
      <repositories>
          <repository>
              <id>local.orgnisation.repo</id>
              <url>http://local.orgnisation.repo/artifactory/repo</url>
          </repository>
      </repositories>
        </profile>
  </profiles>-->
    <activeProfiles>
    <activeProfile>default</activeProfile>
  </activeProfiles>

</settings>

我正在使用工件存储库管理器。任何帮助将不胜感激。

谢谢,

4

1 回答 1

1

您需要在 Maven settings.xml 中为中央存储库创建一个镜像条目

http://maven.apache.org/guides/mini/guide-mirror-settings.html

<mirror>
  <id>local</id>
  <mirrorOf>central</mirrorOf>
  <url>URL of your artifactory repository</url>
</mirror>
于 2012-12-21T09:48:46.790 回答