when I try to run gradle dependencies
on my computer I am getting a 407 status code \"Proxy Authentication Required.\"
I created a gradle.properties fil
Some dependencies are fetched from servers that run over HTTPS so you need to specify values for https properties as well:
systemProp.https.proxyHost=http-proxy.nwie.net
systemProp.https.proxyPort=8080
systemProp.https.proxyUser=http-proxy.nwie.net/%USERNAME%
systemProp.https.proxyPassword=%PASSWORD%
Is it an NTLM proxy (Usually found in a windows environment with active directory). If so, You may have to specify the domain name with the username in the format domain/username. Take a look at this link.
http://www.gradle.org/docs/current/userguide/build_environment.html