mirror of https://github.com/apache/maven.git
o Fixed propagation of proxy settings
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@759550 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28d05ee6d4
commit
ccdd99b5c6
|
@ -88,4 +88,6 @@ public interface WagonManager
|
|||
|
||||
void addAuthenticationInfo( String repositoryId, String username, String password, String privateKey, String passphrase );
|
||||
|
||||
void addProxy( String protocol, String host, int port, String username, String password, String nonProxyHosts );
|
||||
|
||||
}
|
||||
|
|
|
@ -398,6 +398,8 @@ public class LegacyRepositorySystem
|
|||
proxyInfo.setPassword( password );
|
||||
|
||||
proxies.put( protocol, proxyInfo );
|
||||
|
||||
wagonManager.addProxy( protocol, host, port, username, password, nonProxyHosts );
|
||||
}
|
||||
|
||||
public void addAuthenticationInfo( String repositoryId, String username, String password, String privateKey,
|
||||
|
|
Loading…
Reference in New Issue