gpt4 book ai didi

json - 什么 repo 包含 json-taglib 神器?

转载 作者:行者123 更新时间:2023-12-01 05:20:33 30 4
gpt4 key购买 nike

我正在使用 Maven 3.1.1、Java 6 和 JBoss 7.1.3。我想在我的 JSP 上将对象呈现为 JSON,但是当我将其包含在我的 pom 中时

            <dependency>
<groupId>json-taglib</groupId>
<artifactId>json-taglib</artifactId>
<version>0.4.1</version>
</dependency>

我收到这条通知...

[ERROR] Failed to execute goal on project myproject: Could not resolve dependencies for project org.mainco.subco:myproject:war:66.0.0-SNAPSHOT: Failure to find json-taglib:json-taglib:jar:0.4.1 in https://repository-myrepo.forge.cloudbees.com/release was cached in the local repository, resolution will not be reattempted until the update interval of cloudbees-private-release-repository has elapsed or updates are forced -> [Help 1]

此 Artifact 是否在任何公共(public)存储库中可用?我想避免下载 Artifact 或将其安装到只有我有权访问的存储库中。或者,如果有一个可公开访问的库可以做同样的事情,我也可以使用它。

编辑:根据给定的答案设置我的存储库指令,但仍然出现错误

            <repository>
<id>atg-json-taglib</id>
<name>ATG JSON</name>
<url>http://maven.nuxeo.org/nexus/content/repositories/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>

最佳答案

你应该检查这个存储库。

http://maven.nuxeo.org/nexus/content/repositories/public/atg/taglib/json/json-taglib/0.4.1/

您可以像这样添加存储库:

<repository>
<id>public</id>
<url>http://maven.nuxeo.org/nexus/content/repositories/public/</url>
</repository>

并添加你的依赖

<dependency>
<groupId>atg.taglib.json</groupId>
<artifactId>json-taglib</artifactId>
<version>0.4.1</version>
</dependency>

关于json - 什么 repo 包含 json-taglib 神器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26496086/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com