Gradle/ivy 使用缓存的存储库?
我希望 Grade/Ivy 使用我的 jar 的缓存版本,因为每次检查更新大约需要 20 秒。
这可能吗?
谢谢 米沙
I would like Grade/Ivy to use cached versions of my jars, as it takes ~20 seconds to check every time for updates.
Is this possible?
Thank you
Misha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据所需的速度,使用 Artifactory 或 Nexus 设置本地存储库代理可能就足够了(您可以对多个存储库执行此操作,而不仅仅是 Maven Central)。通过这种方式检查更新应该会更快,因为它不再通过互联网而仅通过本地网络。仅当您第一次使用依赖项时,代理才会从上游存储库下载它。
Depending on the required speed it may be sufficient to setup a local repository proxy (you can do this for multiple repositories not only maven central) with Artifactory or Nexus. This way checking for updates should be much faster since it no longer goes over the internet but only over the local network. Only the first time you use a dependency will the proxy download it from the upstream repository.
一如既往,这是我的 hack-ey 解决方案:
deps.sh
和我的 build.gradle 变成
Here, as always, is my hack-ey solution:
deps.sh
and my build.gradle becomes