2
0

spring-security-itest-web.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'io.spring.convention.spring-test'
  2. dependencies {
  3. management platform(project(":spring-security-dependencies"))
  4. implementation 'org.springframework:spring-context'
  5. implementation 'org.springframework:spring-web'
  6. provided 'javax.servlet:javax.servlet-api'
  7. testImplementation project(':spring-security-core')
  8. testImplementation project(':spring-security-test')
  9. testImplementation project(':spring-security-web')
  10. testImplementation 'org.hamcrest:hamcrest'
  11. testImplementation 'org.springframework:spring-beans'
  12. testImplementation 'org.springframework:spring-test'
  13. testImplementation 'org.springframework:spring-webmvc'
  14. testImplementation "org.assertj:assertj-core"
  15. testImplementation "org.junit.jupiter:junit-jupiter-api"
  16. testImplementation "org.junit.jupiter:junit-jupiter-params"
  17. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  18. testImplementation "org.mockito:mockito-core"
  19. testImplementation "org.mockito:mockito-junit-jupiter"
  20. testImplementation "org.springframework:spring-test"
  21. testRuntimeOnly project(':spring-security-config')
  22. testRuntimeOnly project(':spring-security-ldap')
  23. }
  24. integrationTest {
  25. options {
  26. jvmArgs = ['-ea', '-Xms128m', '-Xmx500m']
  27. }
  28. maxParallelForks = 1
  29. }