blob: cce816c745407e4a2c886918e40c4d29f93d8cfc (
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
|
description = 'SonarQube :: Authentication :: LDAP'
configurations {
testImplementation.extendsFrom compileOnlyApi
}
dependencies {
// please keep the list ordered
api 'org.apache.commons:commons-lang3'
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
compileOnlyApi 'jakarta.servlet:jakarta.servlet-api'
compileOnlyApi project(':server:sonar-process')
compileOnlyApi project(':sonar-core')
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 project(":sonar-testing-ldap")
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()
}
|