build.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. plugins {
  2. alias(libs.plugins.org.springframework.boot)
  3. alias(libs.plugins.io.spring.dependency.management)
  4. id "nebula.integtest" version "8.2.0"
  5. id 'java'
  6. }
  7. repositories {
  8. mavenCentral()
  9. maven { url "https://repo.spring.io/milestone" }
  10. maven { url "https://repo.spring.io/snapshot" }
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-security'
  14. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  15. implementation 'org.springframework.boot:spring-boot-starter-web'
  16. implementation 'org.springframework.security:spring-security-cas'
  17. implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
  18. testImplementation 'net.sourceforge.htmlunit:htmlunit'
  19. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  20. testImplementation 'org.springframework.security:spring-security-test'
  21. testImplementation "org.testcontainers:junit-jupiter"
  22. testImplementation 'com.codeborne:selenide:7.0.2'
  23. testImplementation 'org.seleniumhq.selenium:selenium-chrome-driver'
  24. testImplementation 'org.seleniumhq.selenium:selenium-java'
  25. testImplementation 'io.github.bonigarcia:webdrivermanager:5.6.4'
  26. }
  27. tasks.withType(Test).configureEach {
  28. useJUnitPlatform()
  29. outputs.upToDateWhen { false }
  30. }