在需要身份验证的代理后面使用 Tycho

发布于 2024-09-03 03:32:36 字数 241 浏览 6 评论 0原文

我需要在需要身份验证的防火墙后面使用适用于 Maven 的 Tycho 插件。解决方法如下:

https://issues.sonatype.org/browse/TYCHO-279

几乎可行,我只需要一种提供用户名和密码的方法。

有人可以帮忙吗?

I need to use the Tycho plug-in for Maven behind a firewall that requires authentication. The workaround here:

https://issues.sonatype.org/browse/TYCHO-279

Nearly works, I just need a way of providing a username and password.

Can anyone help?

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

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

发布评论

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

评论(3

日记撕了你也走了 2024-09-10 03:32:36

尝试添加

-Dhttp.proxyUser=username -Dhttp.proxyPassword=password

Try adding

-Dhttp.proxyUser=username -Dhttp.proxyPassword=password
你怎么这么可爱啊 2024-09-10 03:32:36

您必须使用 -Dhttp.proxy.usr=NAME
不确定密码参数的名称...

You have to use -Dhttp.proxy.usr=NAME
Not sure about the name of the password parameter...

尹雨沫 2024-09-10 03:32:36

提供代理设置,包括您在 Maven 配置文件中的凭据,例如 /.m2/settings.xml
即使使用 NTLM-v2 代理,也适用于 Maven 3.3.3

<proxies>
  <proxy>
    <id>bp</id>
    <active>true</active>
    <protocol>http</protocol>
    <username>MYUSERNAME</username>
    <password>MYPASSWORD</password>
    <host>my.proxy.host</host>
    <port>808080</port>
    <!--<nonProxyHosts>local.net|some.host.com</nonProxyHosts>-->
  </proxy>
</proxies>

Provide the proxy settings including your credentials inside the maven configuration file e.g. /.m2/settings.xml
Works for Maven 3.3.3 even with NTLM-v2 proxies

<proxies>
  <proxy>
    <id>bp</id>
    <active>true</active>
    <protocol>http</protocol>
    <username>MYUSERNAME</username>
    <password>MYPASSWORD</password>
    <host>my.proxy.host</host>
    <port>808080</port>
    <!--<nonProxyHosts>local.net|some.host.com</nonProxyHosts>-->
  </proxy>
</proxies>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文