aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-education-plugin
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 /plugins/sonar-education-plugin
parente4724e3ff8b382855cfad2ab76234d8df1b8ef87 (diff)
downloadsonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.tar.gz
sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.zip
SONAR-15595 Replace Gradle deprecated dependency scopes
Diffstat (limited to 'plugins/sonar-education-plugin')
-rw-r--r--plugins/sonar-education-plugin/build.gradle12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/sonar-education-plugin/build.gradle b/plugins/sonar-education-plugin/build.gradle
index 71bad6499f1..e386ec90234 100644
--- a/plugins/sonar-education-plugin/build.gradle
+++ b/plugins/sonar-education-plugin/build.gradle
@@ -1,14 +1,14 @@
configurations {
- testImplementation.extendsFrom(compileOnly)
+ testImplementation.extendsFrom(compileOnlyApi)
}
dependencies {
- compileOnly 'org.sonarsource.api.plugin:sonar-plugin-api'
+ compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api'
- testCompile 'junit:junit'
- testCompile 'org.assertj:assertj-core'
- testCompile 'org.mockito:mockito-core'
- testCompile project(':sonar-plugin-api-impl')
+ testImplementation 'junit:junit'
+ testImplementation 'org.assertj:assertj-core'
+ testImplementation 'org.mockito:mockito-core'
+ testImplementation project(':sonar-plugin-api-impl')
}
jar {