diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2022-11-25 10:24:46 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-12-01 20:03:11 +0000 |
commit | e8e5f48ffdf812693d80299bae1e2e456c79236b (patch) | |
tree | a3a54424cafbcf0a156545d9fcb09399069515ee /server/sonar-auth-common | |
parent | e4724e3ff8b382855cfad2ab76234d8df1b8ef87 (diff) | |
download | sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.tar.gz sonarqube-e8e5f48ffdf812693d80299bae1e2e456c79236b.zip |
SONAR-15595 Replace Gradle deprecated dependency scopes
Diffstat (limited to 'server/sonar-auth-common')
-rw-r--r-- | server/sonar-auth-common/build.gradle | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/server/sonar-auth-common/build.gradle b/server/sonar-auth-common/build.gradle index 7c598342345..0b79c334014 100644 --- a/server/sonar-auth-common/build.gradle +++ b/server/sonar-auth-common/build.gradle @@ -1,20 +1,20 @@ description = 'SonarQube :: Authentication :: Common' configurations { - testImplementation.extendsFrom compileOnly + testImplementation.extendsFrom compileOnlyApi } dependencies { // please keep the list ordered - compile 'com.github.scribejava:scribejava-apis' - compile 'com.github.scribejava:scribejava-core' + api 'com.github.scribejava:scribejava-apis' + api 'com.github.scribejava:scribejava-core' - compileOnly 'com.google.code.findbugs:jsr305' + compileOnlyApi 'com.google.code.findbugs:jsr305' - testCompile 'commons-lang:commons-lang' - testCompile 'com.squareup.okhttp3:mockwebserver' - testCompile 'junit:junit' - testCompile 'org.assertj:assertj-core' - testCompile 'org.mockito:mockito-core' + testImplementation 'commons-lang:commons-lang' + testImplementation 'com.squareup.okhttp3:mockwebserver' + testImplementation 'junit:junit' + testImplementation 'org.assertj:assertj-core' + testImplementation 'org.mockito:mockito-core' } |