Finding missing Maven artifacts

后端 未结 9 2171
你的背包
你的背包 2021-01-02 05:01

I\'m new to Maven, and struggling with adding dependencies. I\'m trying to convert an existing project to Maven, and after adding the dependencies for all the jars in my ref

9条回答
  •  隐瞒了意图╮
    2021-01-02 05:40

    It also could be cause by the dom4j. The same error occurred when I use the following settings.

    
        dom4j
        dom4j
        20040902.021138
    
    

    After changing to the following, the error disappeared.

    
        dom4j
        dom4j
        1.6.1
    
    

提交回复
热议问题