向把json-lib-2.2.3-jdk15.jar包加入到maven项目里面,pom.xml文件配置为:

       <dependency>
        <groupId>net.sf.json-lib</groupId>
        <artifactId>json-lib</artifactId>
        <version>2.2.3</version>
        </dependency>

但是报错:Missing artifact net.sf.json-lib:json-lib:jar:2.4:compile

最后在网上找到了原因是:json-lib是需要区分jdk版本的,pom.xml中的配置应加上标签classifier指定jdk版本,如用jdk15,就正常了。

正确的配置为:

         <dependency>
        <groupId>net.sf.json-lib</groupId>
        <artifactId>json-lib</artifactId>
        <classifier>jdk15</classifier>
        <version>2.2.3</version>
        </dependency>

最后附上maven库的地址:https://search.maven.org 中央库

                                                http://maven.oschina.net/home.html 开源中国

GitHub 加速计划 / ma / maven
36
3
下载
Maven: Apache Maven是一个开源的项目管理和构建工具,主要用于Java项目。适合需要自动化项目构建和依赖管理的开发者。特点包括约定优于配置、易于使用和社区驱动。
最近提交(Master分支:3 个月前 )
1db41bbe Bumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.1...r6.0.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1 天前
cb7188d7 Use latest Mimir 0.11.2 + mirror feature. CI is now redirected to Google US Mirror. We identified 3 problems affected by unstable Central (fails the CI runs if any of these get 4xx/5xx): * wrapper - fixed by using alt URL * Mimir extension loading from Central (not solved by this PR) * two UTs `RequestTraceTest` and `TestApiStandalone` going directly to Central (not solved by this PR) 2 天前
Logo

AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。

更多推荐