diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2022-11-11 08:20:44 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-11-11 20:02:50 +0000 |
commit | 3639887afad7deb00c051642ea4177aaf9160fb7 (patch) | |
tree | f6f822013818a472b04aea93789729df55b4a0ed /build.gradle | |
parent | d5cb9df0be45fa016ed30caee56053828e1ecda7 (diff) | |
download | sonarqube-3639887afad7deb00c051642ea4177aaf9160fb7.tar.gz sonarqube-3639887afad7deb00c051642ea4177aaf9160fb7.zip |
SONAR-17593 Rename gradle task and extension from 'sonarqube' to 'sonar'
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index 78dc66d3355..6313a872b1e 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { id "de.undercouch.download" version "5.0.1" apply false id 'io.spring.dependency-management' version '1.0.11.RELEASE' id "org.cyclonedx.bom" version "1.6.1" apply false - id 'org.sonarqube' version '3.4.0.2513' + id 'org.sonarqube' version '3.5.0.2730' } if (!JavaVersion.current().java11Compatible) { @@ -123,7 +123,7 @@ allprojects { } apply plugin: 'org.sonarqube' -sonarqube { +sonar { properties { property 'sonar.projectName', projectTitle property 'sonar.projectVersion', "${versionInSources}-SNAPSHOT" @@ -158,7 +158,7 @@ subprojects { protobufVersion = '3.21.7' } - sonarqube { + sonar { properties { property 'sonar.moduleKey', project.group + ':' + project.name } |