在maven项目中没有下载Bitbucket依赖项

时间:2017-09-05 07:59:59

标签: java maven bitbucket-api

我正在尝试编写一个BitBucket拉请求监听器。但是当我尝试创建一个maven项目时,与它相关的罐子没有被下载。

<!-- https://mvnrepository.com/artifact/com.atlassian.bitbucket.server    /bitbucket-api -->

<dependency>
  <groupId>com.atlassian.bitbucket.server</groupId>
  <artifactId>bitbucket-api</artifactId>
  <version>4.0.0-m7</version>
  <scope>provided</scope>
</dependency>

[INFO] ------------------------------------------------------------------------
[WARNING] The POM for com.atlassian.bitbucket.server:bitbucket-api:jar:4.0.0-m7 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.470 s
[INFO] Finished at: 2017-09-05T13:31:54+05:30
[INFO] Final Memory: 6M/155M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project bitbucketsniffer: Could not resolve dependencies for project com.bitbucketsniffer:bitbucketsniffer:jar:1.0-SNAPSHOT: Failure to find com.atlassian.bitbucket.server:bitbucket-api:jar:4.0.0-m7 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.

有没有办法手动安装jar,就像我们使用oracle依赖jar一样,如果是,那么如果我尝试创建这个项目的可执行jar,这会有效吗?

2 个答案:

答案 0 :(得分:0)

您还需要定义存储库。

所以在<dependencies>之前将它放到你的pom.xml文件中:

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

mvnrepository.com只是各种图书馆的搜索引擎。当您需要包含存储库时,它通常会在注释中为您提供链接。

实施例:mvnrepository.com different repository example

答案 1 :(得分:0)

我花了一天多的时间来解决这个问题,这对我有用。

通过命令emailVerified: true

创建新的bitbucket插件项目时出现以下错误。

错误:无法解决maven POP.xml中的以下依赖项:

com.atlassian.bitbucket.server > bitbucket-api

com.atlassian.bitbucket.server > bitbucket-spi

解决方案:

将此段添加到POM.xml

atlas-create-bitbucket-plugin-module