无法获得分类依赖性

时间:2018-08-16 08:20:35

标签: gradle dependency-injection dependencies jt400

在此 maven repo 我想使用_jdk8分类。

但是当我使用gradle时,依赖声明如下:

compile('net.sf.jt400:jt400:9.5:jdk8')  

它将尝试获取如下文件:
https://repo.maven.apache.org/maven2/net/sf/jt400/jt400/9.5/jt400-9.5-jdk8.jar

因此,它在分类中使用破折号而不是像在回购中使用的那样是子分数,有人知道如何使用子分数吗?

错误:

* What went wrong:
Could not resolve all files for configuration ':compileClasspath'.
> Could not find jt400-jdk8.jar (net.sf.jt400:jt400:9.5).
  Searched in the following locations:

1 个答案:

答案 0 :(得分:0)

我在存储库中读错了名字:

不仅应该将分类jt400_jdk8设为jdk8,这意味着有效的依赖项注入将是:
compile('net.sf.jt400:jt400:9.5:jt400_jdk8')