我正在使用Apache Maven构建我的项目并且已经配置了自定义存储库但是当它到达存储库时它会挂起很长一段时间
下载:http://maven.mycompany.com/m2/org/springframework/spring/2.5.6/spring-2.5.6.pom
几分钟后,它会从中央仓库下载并
正在下载:http://repo1.maven.org/maven2/org/springframework/spring/2.5.6/spring-2.5.6.pom 12K下载(spring-2.5.6.pom)
我希望超时比这快得多。所有较新版本的maven都会发生这种情况。版本2.0.6或更早版本没有这个问题,它会更快地超时。
答案 0 :(得分:21)
在2.1之前的Maven版本中,没有办法将客户端配置为超时,但是如果设置更新策略,则可以将其配置为更少检查更新。这部分解决了这个问题。
例如:
<repository>
<id>myrepo</id>
<url>http://maven.mycompany.com/m2</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
有效值为:
另一个考虑因素是您用于托管内部存储库的软件。使用诸如Nexus之类的存储库管理器,您可以通过管理器管理所有外部远程存储库连接,并为这些远程连接配置超时。然后,您的客户端将只查询存储库管理器,该管理器应该尽快响应 因为超时允许。
更新
如果您知道特定存储库不会提供依赖关系,您可以将其分离到配置文件中,因此在该构建中不会引用它。
<profiles>
<profile>
<id>remote</id>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
...
</repositories>
</profile>
<profile>
<id>internal</id>
<repositories>
<repository>
<id>myrepo</id>
<url>http://maven.mycompany.com/m2</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
...
</repositories>
</profile>
</profiles>
使用上面的配置,运行 mvn package -Premote 将不会连接到内部存储库,因此超时不会是一个因素。
您可以通过在设置中添加一些额外的配置来避免在每个版本上指定配置文件:
<settings>
...
<activeProfiles>
<activeProfile>internal</activeProfile>
<activeProfile>remote</activeProfile>
</activeProfiles>
...
</settings>
对于Maven 2.1,您可以通过在Maven设置(默认为~/.m2/settings.xml
)中在服务器上添加配置来设置超时,例如:
<server>
<id>myrepo</id>
<configuration>
<timeout>5000</timeout> <!-- 5 seconds -->
</configuration>
</server>
答案 1 :(得分:0)
一个快速而又脏的黑客是添加一个自定义主机文件条目,将网络请求重定向到无效的存储库到有效的存储库。