繁体   English   中英

使用关联预取maven-metadata.xml

[英]Prefetch maven-metadata.xml with nexus

使用maven3配置文件settings.xml

<?xml version="1.0" encoding="UTF-8"?>
<settings>
  <!--<host>webproxy</host>-->
  <mirrors>
    <mirror>
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://richter-local.de:8081/nexus/content/groups/public</url>
    </mirror>
  </mirrors>
    <servers>
        <server>
            <id>nexus</id>
        </server>
    </servers>
  <profiles>
    <profile>
      <id>nexus</id>
      <!--Enable snapshots for the built in central repo to direct -->
      <!--all requests to nexus via the mirror -->
      <repositories>
        <repository>
          <id>central</id>
          <url>http://central</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>interval:10080</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>interval:10080</updatePolicy>
          </snapshots>
        </repository>
      </repositories>
     <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <url>http://central</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>interval:10080</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>interval:10080</updatePolicy>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
  <activeProfiles>
    <!--make the profile active all the time -->
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
  <interactiveMode>true</interactiveMode>
  <usePluginRegistry>false</usePluginRegistry>
  <offline>false</offline>
</settings>

和一个nexus maven代理(版本2.7.2-03)我必须每天早上00:00之后等待一堆非常慢的maven-metadata.xml文件下载(大约需要5分钟才能获得一些KB,在几秒钟内被转移)。 我如何预取这些文件以便将其下载到本地本地实例?

听起来您有一个或多个代理存储库,其中的远程响应速度非常慢。 每天一次,这些缓存的超时时间到期,导致检索速度非常慢。

请参阅此处,以获取有关如何调试和配置Nexus的信息,以防止再次发生此问题:

https://support.sonatype.com/entries/25884097-Troubleshooting-slow-maven-metadata-xml-download-speeds

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM