I\'m using Maven 3.1.1 behind a proxy server. The same proxy handles both HTTP
and HTTPS
traffic.
I can\'t seem to tell maven using s
Maven proxy from settings.xml is used for both http and https, so you just need to define one proxy server and it will be used for both, you just need to leave only one proxy
tag, like this:
myhttpproxy
true
http
192.168.1.2
3128
localhost
The protocol above is the protocol of the proxy server, not the proxied request.