使用sonarqube gradle插件使用子模塊來配置Android項目的正確方法是什麼?谷歌並不是我的朋友,但我可能錯過了一些基本的東西。 (我搜索與android構建目錄和子模塊有關的sonarqube問題,沒有有用的結果。)使用sonarqube gradle插件使用子模塊來配置Android項目的正確方法是什麼?
在非常高的層面上,我正在使用具有以下結構的Android項目。
git_repository
|----- android_project
|--- app
|--- SDK
|- api
git_repository包含README.md和其他頂級文件,包括android_project。 android_project包含應用程序,以及SDK中的git子模塊。這個git子模塊包含應用程序需要運行的api代碼。
問題是,當我嘗試運行sonarqube時,它似乎在尋找不存在的文件/目錄。我沒有這個簡單的最小項目的問題。我計劃在週一建立一個使用子模塊的最小化項目,但是我想在我離開週末之前把這個問題帶出門外。
$ ./gradlew clean sonarqube
* snip *
:sonarqube
Invalid value for sonar.java.test.libraries
:sonarqube FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':sonarqube'.
> No files nor directories matching '/Users/my_username/git_repository/android_project/app/build/intermediates/dependency-cache/debug'
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or -- debug option to get more log output.
BUILD FAILED
Total time: 9.897 secs
$
這gradle這個任務是失敗上的MacOS/Android Studio中的命令行設置,但最終的目標是擁有與詹金斯工作的配置。 我的settings.gradle和build.gradle文件如下。顯然我做錯了什麼。
git_repository/android_project/settings.gradle完整列表
include ':app', ':api'
project(':api').projectDir = new File('SDK/api')
git_repository/android_project /的build.gradle完整列表
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply plugin: 'org.sonarqube'
allprojects {
repositories {
jcenter()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
//subprojects {
// sonarqube {
// properties {
// // property "sonar.sources", "src"
// }
// }
//}
//sonarqube {
// properties {
//// property "sonar.exclusions", "file:**/SDK/**"
// }
//}
subprojects {
sonarqube {
properties {
property "sonar.sourceEncoding","UTF-8"
property "sonar.sources","src/main/java"
property "sonar.java.binaries", "./build/"
property "sonar.tests","src/androidTest"
// property "sonar.exclusions","build,build/**,**/*.png"
property "sonar.import_unknown_files", true
property "sonar.android.lint.report", "./build/outputs/lint-results.xml"
}
}
}
project(":api") {
sonarqube {
skipProject = true
}
}
爲什麼不使用sonarqube作爲特定機器的軟件而不是將它用作gradle插件 – dhams