- Мне нужно заставить работу Дженкинса работать. Я не принимал участия в процессе разработки;
- проблем с подключением нет (другие проекты на том же узле отправляют сообщения на сервер sonar);
- Шаг сонара настроен, но используется неправильно.
Ошибка немного странная:
Код: Выделить всё
Task 'app:sonar' is not up-to-date because:
Task has not declared any outputs despite executing actions.
...
SonarQube server [] can not be reached
Код: Выделить всё
buildscript {
...
repositories { ... }
dependencies { ... }
allprojects {
repositories { ... }
}
}
task clean(type: Delete) { ... }
Код: Выделить всё
plugins {
id 'org.sonarqube' version '4.4.1.3373'
...
}
sonarqube {
properties {
property "sonar.host.url", "server"
property "sonar.projectKey", "key"
property "sonar.login", "token"
}
}
android {
buildTypes { ... }
productFlavors { ... }
}
dependencies { ... }
Есть предложения, чего может не хватать?
Источник: https://stackoverflow.com/questions/781 ... tput-error