如何从下面的回购获得winsw-1.19-bin.exe:
repositories {
maven {
url 'http://repo.jenkins-ci.org/releases'
}
}
dependencies {
compile('com.sun.winsw:winsw:1.19@exe')
}上述报税表:
* What went wrong:
Could not resolve all dependencies for configuration ':compileClasspath'.
> Could not find winsw.exe (com.sun.winsw:winsw:1.19).
Searched in the following locations:
http://repo.jenkins-ci.org/releases/com/sun/winsw/winsw/1.19/winsw-1.19.exe发布于 2016-08-18 11:38:11
好像我错过了分类器
compile('com.sun.winsw:winsw:1.19:bin@exe')或
compile(group: 'com.sun.winsw', name: 'winsw', version: '1.19', classifier: 'bin', ext: 'exe')https://stackoverflow.com/questions/39016500
复制相似问题