spring-security-itest-web.gradle 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. apply plugin: 'io.spring.convention.spring-test'
  2. dependencies {
  3. implementation platform(project(":spring-security-dependencies"))
  4. implementation 'org.springframework:spring-context'
  5. implementation 'org.springframework:spring-web'
  6. compileOnly 'jakarta.servlet:jakarta.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. testImplementation 'jakarta.servlet:jakarta.servlet-api'
  22. testRuntimeOnly project(':spring-security-config')
  23. testRuntimeOnly project(':spring-security-ldap')
  24. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  25. }
  26. integrationTest {
  27. options {
  28. jvmArgs = ['-ea', '-Xms128m', '-Xmx500m']
  29. }
  30. maxParallelForks = 1
  31. }