blob: 5dfa81995a2776e900d684849e2a606fc2a7fd0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
description = 'SonarQube :: Authentication :: SAML'
configurations {
testImplementation.extendsFrom compileOnlyApi
}
dependencies {
// please keep the list ordered
api "com.onelogin:java-saml"
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
compileOnlyApi 'com.squareup.okhttp3:okhttp'
compileOnlyApi 'jakarta.servlet:jakarta.servlet-api'
compileOnlyApi 'org.json:json'
compileOnlyApi project(':server:sonar-db-dao')
compileOnlyApi project(':server:sonar-webserver-api')
compileOnlyApi project(':sonar-core')
implementation 'javax.servlet:javax.servlet-api:4.0.1'
testImplementation 'com.tngtech.java:junit-dataprovider'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
testImplementation testFixtures(project(':server:sonar-db-dao'))
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
}
test {
// Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
useJUnitPlatform()
}
|