aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-testing-ldap
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 /sonar-testing-ldap
parente4724e3ff8b382855cfad2ab76234d8df1b8ef87 (diff)
downloadsonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.tar.gz
sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.zip
SONAR-15595 Replace Gradle deprecated dependency scopes
Diffstat (limited to 'sonar-testing-ldap')
-rw-r--r--sonar-testing-ldap/build.gradle12
1 files changed, 6 insertions, 6 deletions
diff --git a/sonar-testing-ldap/build.gradle b/sonar-testing-ldap/build.gradle
index ef4b246bbf5..be7655faf03 100644
--- a/sonar-testing-ldap/build.gradle
+++ b/sonar-testing-ldap/build.gradle
@@ -5,11 +5,11 @@ sonar {
}
dependencies {
- compile 'junit:junit'
- compile 'org.apache.directory.server:apacheds-all:2.0.0-M24'
- compile 'org.slf4j:slf4j-api'
+ api 'junit:junit'
+ api 'org.apache.directory.server:apacheds-all:2.0.0-M24'
+ api 'org.slf4j:slf4j-api'
- testCompile 'org.assertj:assertj-core'
- testCompile 'org.hamcrest:hamcrest-core'
- testCompile 'org.mockito:mockito-core'
+ testImplementation 'org.assertj:assertj-core'
+ testImplementation 'org.hamcrest:hamcrest-core'
+ testImplementation 'org.mockito:mockito-core'
}