Intellij Idea taking forever to resolve maven dependencies

后端 未结 2 872
渐次进展
渐次进展 2021-02-18 21:53

I am using intellij idea ultimate version 12.1.4 and trying to use maven with a project. Here is my pom.xml:


<         


        
2条回答
  •  孤独总比滥情好
    2021-02-18 22:10

    If this is an issue very specific to intellij, I would suggest do the following steps You can try running mvn clean install.(Depending on your network speed it will pull every dependency)

    Change intellij settings in Preferences->build,execution,deployment->maven->Maven home directory->{now change this to point to your mvn home rather than bundled mvn}

    mvn -v in command line should give you the maven home path. Now it won't try to download dependencies again.

提交回复
热议问题