28 lines
926 B
Groovy
28 lines
926 B
Groovy
description = 'SonarQube :: Authentication :: GitLab'
|
|
|
|
configurations {
|
|
testImplementation.extendsFrom compileOnlyApi
|
|
}
|
|
|
|
dependencies {
|
|
// please keep the list ordered
|
|
|
|
api 'com.github.scribejava:scribejava-apis'
|
|
api 'com.github.scribejava:scribejava-core'
|
|
api 'com.google.code.gson:gson'
|
|
api project(':server:sonar-auth-common')
|
|
api project(':server:sonar-server-common')
|
|
|
|
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
|
|
compileOnlyApi 'com.squareup.okhttp3:okhttp'
|
|
compileOnlyApi 'jakarta.servlet:jakarta.servlet-api'
|
|
compileOnlyApi project(':sonar-core')
|
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
|
testImplementation 'com.squareup.okhttp3:okhttp'
|
|
testImplementation 'junit:junit'
|
|
testImplementation 'com.tngtech.java:junit-dataprovider'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.mockito:mockito-core'
|
|
}
|