Mercurial > public > develkit
view metrics70.gradle @ 354:23617a92ae36
try setting the group id with the branch hash
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Tue, 05 Sep 2023 13:26:06 -0400 |
parents | 36b6c48ee6c7 |
children | de8c350c511a |
line wrap: on
line source
buildscript { repositories { maven { url 'https://docker.ssdt.io/artifactory/gradle-plugins' } maven { url 'https://docker.ssdt.io/artifactory/ssdt-repo' } } dependencies { classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3" } } apply plugin: org.sonarqube.gradle.SonarQubePlugin sonarqube { properties { property "sonar.host.url", "http://sonar.ssdt.io:9000" property "sonar.login", System.getenv('bamboo_SONAR_TOKEN') property "sonar.exclusions","**/ProjectVersion*" } } allprojects { afterEvaluate { project -> project.getTasksByName('sonarqube',false).each { it.enabled = gradle.branchStream in ['release'] } } }