在此 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:
答案 0 :(得分:0)
我在存储库中读错了名字:
不仅应该将分类jt400_jdk8
设为jdk8
,这意味着有效的依赖项注入将是:
compile('net.sf.jt400:jt400:9.5:jt400_jdk8')