2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-test'
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-04 20:36:21 -04:00
|
|
|
management platform(project(":spring-security-dependencies"))
|
2021-04-04 08:31:47 -04:00
|
|
|
implementation 'org.springframework:spring-context'
|
|
|
|
implementation 'org.springframework:spring-web'
|
2017-03-28 16:45:30 -04:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testImplementation project(':spring-security-core')
|
|
|
|
testImplementation project(':spring-security-test')
|
|
|
|
testImplementation project(':spring-security-web')
|
|
|
|
testImplementation 'org.springframework:spring-beans'
|
|
|
|
testImplementation 'org.springframework:spring-test'
|
|
|
|
testImplementation 'org.springframework:spring-webmvc'
|
2017-03-28 16:45:30 -04:00
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testRuntimeOnly project(':spring-security-config')
|
|
|
|
testRuntimeOnly project(':spring-security-ldap')
|
2017-03-28 16:45:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
integrationTest {
|
|
|
|
options {
|
|
|
|
jvmArgs = ['-ea', '-Xms128m', '-Xmx500m']
|
|
|
|
}
|
|
|
|
maxParallelForks = 1
|
|
|
|
}
|