Me and my friend are working on a Java maven project, the setup is identical as we get the project from git. On my setup Maven imports all dependencies correctly but for my
I think the problem is not IntelliJ, I think maven can not download the dependencies, so you can try to force the dependencies download with the following command:
mvn clean install -U
if all needed maven jars have been downloaded ,
try update the local repository manually in setting---maven---repositories.
You could do try with the following solutions:
1.Check if your friend is using any proxy, if so add the proxy settings in the settings.xml of maven folder.
<proxies>
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<host>somthing.com</host>
<port>portnumber</port>
</proxy>
</proxies>