diff --git a/spring-aop/spring-aop.gradle b/spring-aop/spring-aop.gradle index eec30b7bedff..f4646f471938 100644 --- a/spring-aop/spring-aop.gradle +++ b/spring-aop/spring-aop.gradle @@ -1,3 +1,7 @@ +plugins { + id 'org.sonarqube' version '7.4.0.8496' +} + description = "Spring AOP" apply plugin: "kotlin" @@ -16,3 +20,13 @@ dependencies { testImplementation(testFixtures(project(":spring-core"))) testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor") } + +// This module is analyzed as its own SonarQube project. +sonar { + properties { + property 'sonar.projectKey', 'org.springframework:spring-aop' + property 'sonar.projectName', 'Spring AOP' + property 'sonar.projectVersion', project.version + property 'sonar.sourceEncoding', 'UTF-8' + } +}