您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.gradle 356B

1234567891011121314
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Priviledged Plugin Bridge"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  9. compile project(':sonar-core')
  10. compileOnly 'com.google.code.findbugs:jsr305'
  11. }