常春藤:凭据不会发送到 Nexus

Posted

技术标签:

【中文标题】常春藤:凭据不会发送到 Nexus【英文标题】:Ivy: credentials are not sent to Nexus 【发布时间】:2016-10-24 20:14:04 【问题描述】:

我正在使用 Ivy 来构建包含多个组件的项目。我想将这些组件上传到 Nexus 2.6.4

我可以使用curl 和默认用户名和密码将文件发布到 Nexus:

curl -i -v -u deployment:deployment123 --upload-file a.txt http://myserver:8081/nexus/content/repositories/releases/acp/myproject.app/1.0.0.20160622175545/a.txt

这工作得很好!当我在 Nexus UI 上转到系统提要:授权和身份验证部分时,我可以看到成功连接。

当我将密码更改为错误密码时,我可以在授权和身份验证源中看到失败的连接尝试。

但是,当我使用 Ant 构建项目时,我点击了 Unauthorized(听起来像 401)。而且我在 Nexus 提要中完全看不到任何东西(这意味着根据 Nexus 文档没有发送任何凭据)。

ivysettings.xml:

<ivysettings>
    <settings defaultBranch="$ivy.deliver.branch" defaultResolver="default-chain" />
    <properties file="$ivy.settings.dir/build.properties" />
    <credentials host="$repo.host" realm="$repo.realm"
    username="$repo.user" passwd="$repo.pass" />

    <resolvers>
        <filesystem name="local" transactional="true">
        <ivy
            pattern="$ivy.default.ivy.user.dir/local/[organisation]/[module]/[branch]/[revision]/ivy-[revision].xml" />
            <artifact
            pattern="$ivy.default.ivy.user.dir/local/[organisation]/[module]/[branch]/[revision]/[type]s/[artifact]-[revision].[ext]" />
        </filesystem>
        <ibiblio name="nexus" m2compatible="true" root="$nexus-public" />
        <ibiblio name="nexus-releases" m2compatible="true" root="$nexus-releases" />
        <chain name="default-chain">
            <resolver ref="local" />
            <resolver ref="nexus" />
        </chain>
    </resolvers>
</ivysettings>

build.properties 包含(除其他外):

repo.host=myserver
repo.port=8081
repo.user=deployment
repo.pass=deployment123
repo.realm=Nexus Repository Manager
bundle.publish.resolver=nexus-releases

有什么想法吗?

【问题讨论】:

我认为您的领域可能不正确。试试:“Sonatype Nexus Repository Manager”。 谢谢你,马克。这确实是个问题! 您能否将其发布为答案以便我接受? 【参考方案1】:

领域不正确。正确的值为Sonatype Nexus Repository Manager。该领域不是使用curl 所必需的,但在从 Ant 进行身份验证时是必需的。

【讨论】:

以上是关于常春藤:凭据不会发送到 Nexus的主要内容,如果未能解决你的问题,请参考以下文章

从 Nexus 下载时,常春藤的 transitive="false" 会被忽略

将用户的 Active Directory 凭据发送到后端系统是不是错误

无法将带有凭据的 http 帖子发送到 iis 节点服务器

常春藤发布到存储库不会更新本地缓存

.NET WebApi HttpClient 未将 Windows 身份验证凭据发送到同一域

AFNetworking 2.0:凭据未在前一次请求的 30 秒内发送到身份验证