Maven not downloading dependencies in Eclipse

后端 未结 11 1453
伪装坚强ぢ
伪装坚强ぢ 2021-01-03 19:08

I am setting up a project in eclipse . This projects builds successfully through command line(all mvn commands like mvn package, mvn compile<

11条回答
  •  北海茫月
    2021-01-03 19:47

    1. Try to move your dependencies from "type" tag to "scope" tag like below

    or

    
            net.xyz.xyz
            xyz-xyz
            x.y.z
            pom
     
    

    or

    
                net.xyz.xyz
                xyz-xyz
                x.y.z
                test 
         
    

    then further Maven > Update Project

提交回复
热议问题