无法使用 JitPack.io 构建

Can't build using JitPack.io

我正在尝试

<!-- https://github.com/lbehnke/hierarchical-clustering-java.git -->
<dependency>
<groupId>com.github.lbehnke</groupId>
<artifactId>hierarchical-clustering-java</artifactId>
<version>anyBranch-SNAPSHOT</version>
</dependency>

这是正确的使用方法吗?

我已经添加了

<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>

我正在尝试从 eclipse 内部构建 (当然是maven项目)

错误说

Missing artifact com.github.lbehnke:hierarchical-clustering-
java:jar:anyBranch-SNAPSHOT

The container 'Maven Dependencies' references non existing 
library '/home/leoks/.m2/repository/com/github/lbehnke/hierarchical-
clustering-java/anyBranch-SNAPSHOT/hierarchical-clustering-
java-anyBranch-SNAPSHOT.jar'

ps。我已经检查过这些线程

Can I use a GitHub project directly in Maven?

但是none似乎有帮助

更改依赖项中标签 ID 的版本 ID。

所以在您的情况下,对于版本 v1.1.0,标签 ID 是 d74af46。位于:存储库页面 -> 版本 -> 左侧列(在版本 ID 下)。

<dependency>
<groupId>com.github.lbehnke</groupId>
<artifactId>hierarchical-clustering-java</artifactId>
<version>d74af46</version>
</dependency>    

这不会为您提供 SNAPSHOT 版本,但至少应该可以编译。我在这里测试过并且有效。

来源:https://github.com/vidstige/jadb/issues/14