找不到com.atlassian:atlassian-localhost:jar:1.1.0

时间:2020-01-10 13:54:41

标签: java maven dependencies repository

我正在尝试在pom.xml文件中添加Maven依赖 atlassian-mail

df = df.resample('MS', loffset=pd.Timedelta(14, 'd')).mean()

    <repositories>
        <repository>
            <id>atlassian</id>
            <name>Atlassian Repository</name>
            <url>https://maven.atlassian.com/content/repositories/atlassian-public/</url>
        </repository>
    </repositories>

但是我遇到了以下错误:

描述资源路径位置类型 容器“ Maven依赖关系”引用了不存在的库“ C:\ Users \ jmvmarti.m2 \ repository \ com \ atlassian \ atlassian-localhost \ 1.1.0 \ atlassian-localhost-1.1.0.jar” 027_mycoolwebapp生成路径生成路径问题

当我以 Maven build ... 的身份执行 pom.xml 时,将目标定义为 clean package (我读过一些可以解决问题,但不起作用)。我收到以下错误消息:


    <dependency>
        <groupId>com.atlassian.mail</groupId>
        <artifactId>atlassian-mail</artifactId>
        <version>5.0.1</version>
    </dependency>

1 个答案:

答案 0 :(得分:0)

我也遇到了同样的问题。

您可能知道也可能不知道,Atlassian-localhost-1.1.0.jar不会出现在您引用的atlassian存储库URL中的任何位置。因此,错误至少对于抛出错误的原因是有意义的。对于那些在自己的存储库中不包含依赖的jar文件的大事,我感到困惑,为什么他们要这样做(或者我应该说不这样做?)。

我可以建议的唯一解决方法是从外部源手动下载jar: https://nexus.xebialabs.com/nexus/content/groups/public/com/atlassian/atlassian-localhost/1.1.0/

并将其手动拉入本地存储库:

(C:\ Users \ jmvmarti.m2 \ repository \ com \ atlassian \ atlassian-localhost)

然后,再次更新您的Maven项目,然后就可以了。