Skip to content
Andy Xu(devdiv) edited this page Feb 3, 2021 · 12 revisions

Proxy

All the Azure Maven/Gradle plugins now supports http proxy, if your network requires proxy, you may need to enable it by:

  1. System Proxy
  2. Java Command Line Arguments
  3. Maven Configuration

System Proxy

The most convenient way to configure proxy is to configure system proxy, if you are using Window 10, you can configure system proxy by:

  1. Press # to show startup menu, type settings and click on the system settings button.
  2. In System Settings page, search proxy and click the 'Proxy settings' button.
  3. Input the proper host name and port and click the save button.
  4. Execute the maven or gradle tasks by adding maven gradle command-line argument:-Djava.net.useSystemProxies=true.

image

Note: Only gradle plugins require you to add command argument:-Djava.net.useSystemProxies=true

Java Command Line Arguments

Execute your maven commands with proxy arguments, eg:-Djava.net.useSystemProxies=true -Dhttps.proxyHost=192.168.1.100 -Dhttps.proxyPort=8080, please replace the host and port with your proxy. You can refer here for more details.

Maven Configuration

see here for how to configure maven proxies.

Clone this wiki locally