内部档案“快照”的目的存储库?
我知道什么是内部库。但是 archive 中快照存储库的用途是什么?
库 - 私人发布 快照 - 私人构建?
我已经设置了 archive 并使用 LDAP,但我想知道为什么需要快照存储库。这样做的目的是为了解决什么问题?为什么在开发中使用这个?
另外,假设我更新了内部存储库中的库。这是否会在使用 Maven 的项目 POM 文件中自动更新,或者我必须更新这些 pom 才能使用新的 JAR 版本?
I get what internal libraries are. But what is the purpose of a snapshot repository in archiva?
Libraries - private releases
Snapshots - private builds?
I have archiva set up and working with LDAP, but I am wondering why I need a snapshot repository. What purpose does this solve? Why is this used in development?
Also, lets say I update a library in the internal repo. Does this automatically update in the project POM files which use Maven, or I must update those poms to use the new JAR version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常在发布maven项目之前,版本是-SNAPSHOT。
因此,通过这样的存储库,您可以与团队中的其他人共享项目的最新快照以进行测试或与 ci 服务器共享。
Usually before releasing a maven project, the version is -SNAPSHOT.
So with such repositories you can share fresh SNAPHOT of your project for other people in your team to test or with a ci server.
Snapshots 是 Maven 的想法,将版本号指定为 -SNAPSHOT ,它正在开发中,可以随时更改。
内部仓库是具有固定版本号的发布仓库。您可以修改快照,但该工件在发布后永远不会改变。
当我们使用internal时,如果内部没有找到依赖项,那么它会从maven的中央存储库下载它。而在快照中却没有。
Snapshots is maven idea to give version number as -SNAPSHOT , its under development it can be change any time.
Internal repository is the release repository with fixed version number. You can modify the SNAPSHOT, but That artifact never changes after it is released.
When we use internal, if dependency does not found inside it, then it will download it from central repository of maven. where as in snapshot it does not.