2016-08-18 1 views
0

Как получить winsw-1,19-bin.exe из ниже репо:Как указать зависимость, заканчивающуюся '<version> -bin.exe' в градиенте?

repositories { 
    maven { 
     url 'http://repo.jenkins-ci.org/releases' 
    } 
} 
dependencies { 
    compile('com.sun.winsw:winsw:[email protected]') 
} 

Вышеуказанные возвращения:

* 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 

ответ

0

Кажется, что я пропускал классификатор

compile('com.sun.winsw:winsw:1.19:[email protected]') 

или

compile(group: 'com.sun.winsw', name: 'winsw', version: '1.19', classifier: 'bin', ext: 'exe') 
+0

Пожалуйста, отметьте это как ответ, если он решит вашу проблему. – mkobit

+0

Я не могу отметить свой собственный ответ. – SebS

+0

Моя ошибка, это, вероятно, потому, что сейчас вопрос составляет всего пару часов. – mkobit