aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-common/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-auth-common/build.gradle')
-rw-r--r--server/sonar-auth-common/build.gradle18
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'
}