Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proxy support lacks authentication settings #279

Open
nox-4O4 opened this issue Apr 4, 2023 · 1 comment
Open

Proxy support lacks authentication settings #279

nox-4O4 opened this issue Apr 4, 2023 · 1 comment
Labels
good first issue Good for newcomers. to grab Ready to do and to grab by those willing.

Comments

@nox-4O4
Copy link

nox-4O4 commented Apr 4, 2023

Some proxies require authentication. There are Maven settings to configure proxy credentials:
https://maven.apache.org/settings.html#proxies

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
  ...
  <proxies>
    <proxy>
      <id>myproxy</id>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts>
    </proxy>
  </proxies>
  ...
</settings>

(username and password).

Currently, it is not possible to specify proxy authentification using proxies option.

@slawekjaranowski
Copy link
Member

PR are welcome

@slawekjaranowski slawekjaranowski added to grab Ready to do and to grab by those willing. good first issue Good for newcomers. labels Jul 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers. to grab Ready to do and to grab by those willing.
Development

No branches or pull requests

2 participants