导入itextasian失败(不可用在https://repo.maven.apache.org/maven2中找到com.lowagie:itextasian:jar:2.0.7失败)

bweufnob  于 2023-08-03  发布在  Maven
关注(0)|答案(1)|浏览(484)
<dependency>
    <groupId>com.lowagie</groupId>
    <artifactId>itextasian</artifactId>
    <version>2.0.7</version>
</dependency>

字符串
我试图在我的pom.xml文件中导入这个库,但我得到了Not available错误,Failure to find com.lowagie:itextasian:jar:2.0.7在https://repo.maven.apache.org/maven2中,但是当我签入https://mvnrepository.com/artifact/com.lowagie/itextasian/2.0.7时,这个库仍然在那里等待我导入。
我可以知道如何导入itextasian吗?我已经尝试直接在intellij中导入jar文件,但我会从现有的itext pdf库中得到错误。
请注意,因为我使用的是com.lowagie的itext2.1.5,所以如果可能的话,我也想使用com.lowagie的itextasian。

yhived7q

yhived7q1#

https://mvnrepository.com/artifact/com.lowagie/itextasian还声明工件已被重新定位到com.itextpdf:itext-asian。将您的依赖项更改为重新定位的工件,您应该可以下载它。
还要注意,mvnrepository.com并不是一个真正的maven存储库主机,而仅仅是存储库中信息的聚合器。mvnrepository.com上可用的信息可能已经过时/与maven repo设置配置不同步。
您可能还想注意到https://mvnrepository.com/artifact/com.lowagie/itextasian/2.0.7
此工件位于EmergyaPub存储库(http://nexus.emergya.es/nexus/content/repositories/public/
如果你信任它,你需要把这个repo添加到你的maven配置**。

相关问题