sonarqube/server/sonar-auth-github/build.gradle
2019-10-07 20:21:06 +02:00

26 lines
764 B
Groovy

description = 'SonarQube :: Authentication :: GitHub'
configurations {
testCompile.extendsFrom compileOnly
}
dependencies {
// please keep the list ordered
compile 'com.github.scribejava:scribejava-apis'
compile 'com.github.scribejava:scribejava-core'
compile 'com.google.code.gson:gson'
compile project(':server:sonar-auth-common')
compileOnly 'com.google.code.findbugs:jsr305'
compileOnly 'com.squareup.okhttp3:okhttp'
compileOnly 'javax.servlet:javax.servlet-api'
compileOnly project(':sonar-core')
testCompile 'com.squareup.okhttp3:mockwebserver'
testCompile 'com.squareup.okhttp3:okhttp'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
}