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.gradle21
1 files changed, 21 insertions, 0 deletions
diff --git a/server/sonar-auth-common/build.gradle b/server/sonar-auth-common/build.gradle
new file mode 100644
index 00000000000..9a669541dac
--- /dev/null
+++ b/server/sonar-auth-common/build.gradle
@@ -0,0 +1,21 @@
+description = 'SonarQube :: Authentication :: Common'
+
+configurations {
+ testCompile.extendsFrom compileOnly
+}
+
+dependencies {
+ // please keep the list ordered
+
+ compile 'com.github.scribejava:scribejava-apis'
+ compile 'com.github.scribejava:scribejava-core'
+
+ compileOnly 'com.google.code.findbugs:jsr305'
+
+ testCompile 'commons-lang:commons-lang'
+ testCompile 'com.squareup.okhttp3:mockwebserver'
+ testCompile 'com.squareup.okhttp3:okhttp'
+ testCompile 'junit:junit'
+ testCompile 'org.assertj:assertj-core'
+ testCompile 'org.mockito:mockito-core'
+}