I understand this question is old, but after installing the new mac, I just solved the ivy problem. In my old shell profile, I had:
export ANT_OPTS="-Dhttp.proxyHost=xyz-proxy -Dhttp.proxyPort=8080"
when I work behind a corporate firewall (change xyz-proxy and 8080 as needed).
Trying to figure out where ant hangs (useful: ant -v test ), it obviously freezes when trying to load artifacts on top of https . So instead, I now use:
export ANT_OPTS="-Dhttps.proxyHost=xyz-proxy -Dhttps.proxyPort=8080 -Dhttp.proxyHost=xyz-proxy -Dhttp.proxyPort=8080"
those. define both the https and http proxies (and change xyz-proxy and 8080 again, respectively).
Bingo, now everything works fine.
source share