Closed dawidcxx closed 7 years ago
It seems your corporate proxy is prohibiting you from accessing the maven central repo mirrors, so you need to work around this somehow :) Maybe you can add proxy parameters to the jvm as described here:
https://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html
Hope this helps :)
Well you were right. I didn't even expected the proxy to be an issue since I set it in intelij's settings and other packages seemed to work just fine.
If anyone fell for the same issue, to fix this I created a gradle.properties with the following content
systemProp.http.proxyHost=<YOUR_HTTP_PROXY_HERE>
systemProp.http.proxyPort=<YOURS_HTTP_PROXY_PORT_HERE>
systemProp.https.proxyHost=<YOUR_HTTPS_PROXY_HERE>
systemProp.https.proxyPort=<YOURS_HTTPS_PROXY_PORT_HERE>
Great! Thanks for updating the ticket, I'm sure that will be useful to others.
Both on my project and on the demo project I get this error if I run generateNativeInstaller gradle command.
`> Could not resolve all dependencies for configuration ':internal_fxlauncher'.
I am also behind a corporate proxy if that matters though other packages work just fine.