Skip to content

Commit

Permalink
fix: set correct property for nonProxyHosts (#6285)
Browse files Browse the repository at this point in the history
  • Loading branch information
weyhmueller committed Dec 12, 2023
1 parent 17186db commit 4b3287b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2194,7 +2194,7 @@ protected void populateSettings() {
System.setProperty("https.proxyPassword", mavenProxy.getPassword());
}
if (mavenProxy.getNonProxyHosts() != null && !mavenProxy.getNonProxyHosts().isEmpty()) {
System.setProperty("https.nonProxyHosts", mavenProxy.getNonProxyHosts());
System.setProperty("http.nonProxyHosts", mavenProxy.getNonProxyHosts());
}
}

Expand Down

0 comments on commit 4b3287b

Please sign in to comment.