Maven: missing net.sf.json-lib

前端 未结 4 904
生来不讨喜
生来不讨喜 2020-12-23 13:07

I found net.sf.json-lib in the central repository. Copy-pasted the dependency (with version 2.3), and then when I build I get this error:

[INFO] Unable to fi         


        
4条回答
  •  礼貌的吻别
    2020-12-23 13:28

    Looking at the maven-central repo, you need to specify a classifier for this dependency.

    Either jdk13 or jdk15, like this:

    
        net.sf.json-lib
        json-lib
        2.4
        jdk15
    
    

提交回复
热议问题