You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
apply plugin: 'io.spring.convention.spring-test' |
|
|
|
dependencies { |
|
implementation platform(project(":spring-security-dependencies")) |
|
implementation project(':spring-security-access') |
|
implementation 'org.springframework:spring-context' |
|
implementation 'org.springframework:spring-web' |
|
|
|
compileOnly 'jakarta.servlet:jakarta.servlet-api' |
|
|
|
testImplementation project(':spring-security-core') |
|
testImplementation project(':spring-security-test') |
|
testImplementation project(':spring-security-web') |
|
testImplementation 'org.hamcrest:hamcrest' |
|
testImplementation 'org.springframework:spring-beans' |
|
testImplementation 'org.springframework:spring-test' |
|
testImplementation 'org.springframework:spring-webmvc' |
|
testImplementation "org.assertj:assertj-core" |
|
testImplementation "org.junit.jupiter:junit-jupiter-api" |
|
testImplementation "org.junit.jupiter:junit-jupiter-params" |
|
testImplementation "org.junit.jupiter:junit-jupiter-engine" |
|
testImplementation "org.mockito:mockito-core" |
|
testImplementation "org.mockito:mockito-junit-jupiter" |
|
testImplementation "org.springframework:spring-test" |
|
testImplementation 'jakarta.servlet:jakarta.servlet-api' |
|
|
|
testRuntimeOnly project(':spring-security-config') |
|
testRuntimeOnly project(':spring-security-ldap') |
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher' |
|
} |
|
|
|
integrationTest { |
|
options { |
|
jvmArgs = ['-ea', '-Xms128m', '-Xmx500m'] |
|
} |
|
maxParallelForks = 1 |
|
}
|
|
|