Maven: missing net.sf.json-lib

前端 未结 4 934
生来不讨喜
生来不讨喜 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:35

    For gradle as sample

    compile 'net.sf.json-lib:json-lib:2.4:jdk15'

    OR

    compile group: 'net.sf.json-lib', name: 'json-lib', version: '2.4', classifier: 'jdk15'

    I searched for more classifier's could not find anything other than jdk15 (don't go looking or jdk16 or jdk17)

提交回复
热议问题