aboutsummaryrefslogtreecommitdiffstats
path: root/ut-monitoring/build.gradle
diff options
context:
space:
mode:
authorZipeng WU <zipeng.wu@sonarsource.com>2022-11-25 10:24:46 +0100
committersonartech <sonartech@sonarsource.com>2022-12-01 20:03:11 +0000
commite8e5f48ffdf812693d80299bae1e2e456c79236b (patch)
treea3a54424cafbcf0a156545d9fcb09399069515ee /ut-monitoring/build.gradle
parente4724e3ff8b382855cfad2ab76234d8df1b8ef87 (diff)
downloadsonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.tar.gz
sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.zip
SONAR-15595 Replace Gradle deprecated dependency scopes
Diffstat (limited to 'ut-monitoring/build.gradle')
-rw-r--r--ut-monitoring/build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/ut-monitoring/build.gradle b/ut-monitoring/build.gradle
index ee096d95cf8..7cbf861e644 100644
--- a/ut-monitoring/build.gradle
+++ b/ut-monitoring/build.gradle
@@ -7,11 +7,11 @@ sonar {
dependencies {
// please keep the list grouped by configuration and ordered by name
- compile 'com.google.code.gson:gson'
- compile 'junit:junit'
- compile 'org.sonarsource.api.plugin:sonar-plugin-api'
+ api 'com.google.code.gson:gson'
+ api 'junit:junit'
+ api 'org.sonarsource.api.plugin:sonar-plugin-api'
- compileOnly 'org.aspectj:aspectjtools'
+ compileOnlyApi 'org.aspectj:aspectjtools'
}
sonar {