It seems that the communication did not reach Maven Central due to the company's proxy settings. That's why I made a note of how to set Maven proxy.

First, let's open Internet Explorer and check the settings.
** Tools **> ** Internet Options **> ** Open Connection Tab ** ** LAN Settings ** **
After checking the URL of the proxy server, create a maven configuration file.
setting.xml
<settings>
  <proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.hoge.local</host>
      <port>8080</port>
    </proxy>
  </proxies>
</settings>
** window **> ** settings **> ** Maven **> ** User Settings **
Open Maven settings from Load the xml file you set earlier in User Settings.

The Update Project should now work from Maven.
Recommended Posts