0

我正在尝试使用以下 Maven pom 获取 JavaHG 0.6 快照:

<dependencies>
  <dependency>
    <groupId>com.aragost.javahg</groupId>
    <artifactId>javahg</artifactId>
    <version>0.6-SNAPSHOT</version>
  </dependency>
</dependencies>
<repositories>
  <repository>
    <id>sonatype-ossrh</id>
    <name>Sonatype Open Source Software Repository Hosting</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  </repository>
</repositories>

这会使构建失败并出现以下错误:

Could not find artifact com.aragost.javahg:javahg-parent:pom:0.6-SNAPSHOT in sonatype-ossrh (https://oss.sonatype.org/content/repositories/snapshots/) -> [Help 1]

我认为这是因为在https://oss.sonatype.org/content/repositories/snapshots/com/aragost/javahg/javahg-parent/中找不到 0.6-SNAPSHOT

有谁知道如何使它工作?

4

1 回答 1

2

不幸的是,最近的构建目前不在 Maven 中。可以在本地构建。这个线程有一些细节:https ://bitbucket.org/mercurialeclipse/main/issue/424/plugin-readmemd-information-out-of-date

  • 克隆 JavaHg 存储库,包括javahg-parent
  • 更新0.6每个标签
  • 调用mvn installjavahg-parent然后再次调用其他存储库
于 2013-06-04T01:37:09.620 回答