Apache Ivy:限制发布到存储库

发布于 2025-01-07 06:30:22 字数 235 浏览 0 评论 0 原文

我希望有一个设置,开发人员可以从 URL Resolver(托管我们的存储库的远程内部服务器)解析/检索依赖项,但无法发布到它(出于安全和代码完整性原因) )。

然而,为了让他们的 Ivy 客户端“看到”远程存储库,以便他们可以从中提取依赖项,我需要在 Ant 构建中的解析/检索模式中公开 URL。这包括用户名和密码!

我如何给他们“读取”(解析)访问权限,而不是“写入”(发布)访问权限?!?!

I'd like to have a setup where developers can resolve/retrieve dependencies from a URL Resolver (a remote, in-house server hosting our repo) but cannot publish to it (for security and code integrity reasons).

However, for their Ivy clients to "see" the remote repo so they can pull dependencies down off of it, I need to expose the URL in the resolve/retrieve patterns inside our Ant builds. This includes the username & password!

How do I give them "read" (resolution) access, but not "write" (publishing) access?!?!

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

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

发布评论

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

评论(2

就像说晚安 2025-01-14 06:30:22

使用存储库管理器,例如 NexusArchivaArtifactory 具有以下安全模型:存储库访问。它将允许您为提供给开发人员的存储库创建只读用户。

Use a repository manager like Nexus, Archiva or Artifactory that has a security model for the repository access. It will allow you to create a read only user for the repository that you give to the developers.

栖竹 2025-01-14 06:30:22

大概允许发布的 ant 构建在开发人员计算机以外的服务器上运行?

在这种情况下,请将用户名和密码放入这些服务器上的环境变量中,并使用 属性 任务。

或者,从本地文件读取用户名和密码。

无论如何,请将凭据保留在应具有发布权限的计算机本地。

Presumably the ant builds that are allowed to publish run on servers other than the developers' machines?

In which case, put the username and password into environment variables on those servers and read them using the environment option on the Property task.

Alternatively, read the username and password from a local file.

In any case, keep the credentials local to the machine which should have the permission to publish.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文