推荐构建工件存储库管理器

发布于 2024-11-30 05:10:37 字数 1539 浏览 0 评论 0 原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

っ〆星空下的拥抱 2024-12-07 05:10:38

您正在创建自定义软件工件存储库。三个开源项目已经做到了这一点:

Artifactory 和 Nexus 也有付费版本。

您可以在这些存储库中存储任何类型的文件,并且不需要使用 Maven。您可以手动将工件部署到它们。您可以设置细粒度的访问控制。它们与自动化构建工具很好地集成。

我认为使用这些工具之一会为您节省很多精力!

这里是三者之间相当公正(社区驱动)的比较矩阵。

You're creating a custom software artifact repository. There are three open-source projects which already do this:

Artifactory and Nexus also have paid versions.

You can store any kind of file in these repositories, and you don't need to use Maven. You can manually deploy artifacts to them. You can set up fine-grained access control. They integrate well with automated build tools.

I think using one of these tools would save you a lot of effort!

Here's fairly unbiased (community-driven) comparison matrix between the three.

独享拥抱 2024-12-07 05:10:38

使用SVN + Apache(mod_dav_svn.so,mod_authz_svn.so)似乎我得到:

  • 通过HTTP协议进行匿名只读访问,范围广泛
    支持下载的客户端(来自 GNU Make 的 wget/curl、任务
    阿帕奇蚂蚁)。
  • 用户/组易于维护的写入访问权限(简单语法):

    <前>[存储库:/路径]
    用户=读写

    通过 cadaver 实用程序。

  • 与 LDAP 集成。

  • 发布历史(发布时间、发布内容和发布者)。
  • 原子操作(防止并发发布和错误回滚)。

With SVN + Apache (mod_dav_svn.so, mod_authz_svn.so) seems I get:

  • Anonymous read only access through HTTP protocol with wide range of
    supported clients for downloading (wget/curl from GNU Make, task for
    Apache Ant).
  • Easy maintainable write access for users/groups (easy syntax):

    [repo:/path]
    user = rw
    

    through cadaver utility.

  • Integration with LDAP.

  • History of releases (when, what and who).
  • Atomic operation (prevent from concurrent releases and rollback on errors).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文