Issue
I have imported spring boot project generated from spring boot initialiazr website and the project spring boot packages are not found.
Please seee the image below
src="https://i.stack.imgur.com/aE5yf.png" alt="Image error from intellij">
Please help
Solution
My problem is fixed. It was my proxy settings problem. I made right clic on IntelliJ=>Maven=>Open Settings.xml
I update settings xml file by adding
<proxies>
<proxy>
<id>myproxy</id>
<active>true</active>
<protocol>http</protocol>
<host>myproxyhost</host>
<port>myproxyportnumber</port>
<username>myproxyusername</username>
<password>myproxpass</password>
<nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts>
</proxy>
</proxies>
Answered By - Jean-Pascal MEWENEMESSE
Answer Checked By - David Goodson (JavaFixing Volunteer)