We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
There is either an issue in the documentation or in the code. Doc says :
To specify an explicit proxy set the environment variables http.proxyHost and http.proxyPort
In DetectProxyConfig.java :
String proxyHost = System.getProperty("http.proxyHost"); Integer proxyPort = Integer.getInteger(System.getProperty("http.proxyPort"));
-> It should be System.getEnv
Maybe you could have both. I currently have to use a third party maven plugin (properties-maven-plugin) to set this variables.
Regards
The text was updated successfully, but these errors were encountered:
f15c873
No branches or pull requests
Hi,
There is either an issue in the documentation or in the code.
Doc says :
In DetectProxyConfig.java :
-> It should be System.getEnv
Maybe you could have both.
I currently have to use a third party maven plugin (properties-maven-plugin) to set this variables.
Regards
The text was updated successfully, but these errors were encountered: