You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
857 B
21 lines
857 B
plugins {
|
|
id 'com.android.application' version '8.3.1' apply false
|
|
id 'com.android.library' version '8.3.1' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
|
|
id 'org.sonarqube' version '4.4.1.3373'
|
|
}
|
|
|
|
sonar {
|
|
properties {
|
|
property 'sonar.projectKey', 'mcslms'
|
|
property 'sonar.projectName', 'MCSLMS - 智能图书管理系统'
|
|
property 'sonar.sourceEncoding', 'UTF-8'
|
|
property 'sonar.java.source', '21'
|
|
// JaCoCo覆盖率报告路径
|
|
property 'sonar.coverage.jacoco.xmlReportPaths',
|
|
'core/build/reports/jacoco/test/jacocoTestReport.xml,' +
|
|
'cli/build/reports/jacoco/test/jacocoTestReport.xml,' +
|
|
'gui/build/reports/jacoco/test/jacocoTestReport.xml,' +
|
|
'backend/build/reports/jacoco/test/jacocoTestReport.xml'
|
|
}
|
|
} |