Files
spring-security-samples/servlet/java-configuration/max-sessions/build.gradle
dependabot[bot] fe9289d1a3 Bump org.springframework:spring-framework-bom from 6.1.9 to 6.1.11
Bumps [org.springframework:spring-framework-bom](https://github.com/spring-projects/spring-framework) from 6.1.9 to 6.1.11.
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.9...v6.1.11)

---
updated-dependencies:
- dependency-name: org.springframework:spring-framework-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-18 10:01:08 -03:00

43 lines
1.3 KiB
Groovy

plugins {
id "java"
id "nebula.integtest" version "8.2.0"
id "org.gretty" version "4.0.3"
id "war"
}
apply from: "gradle/gretty.gradle"
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
dependencies {
implementation platform("org.springframework:spring-framework-bom:6.1.11")
implementation platform("org.springframework.security:spring-security-bom:6.3.1")
implementation platform("org.junit:junit-bom:5.10.0")
implementation "org.springframework.security:spring-security-config"
implementation "org.springframework.security:spring-security-web"
implementation "org.springframework:spring-webmvc"
implementation "org.thymeleaf:thymeleaf-spring6:3.1.1.RELEASE"
providedCompile "jakarta.servlet:jakarta.servlet-api:6.0.0"
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl:2.0.0"
testImplementation "org.assertj:assertj-core:3.18.0"
testImplementation "org.springframework:spring-test"
testImplementation "org.springframework.security:spring-security-test"
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
integTestImplementation "org.seleniumhq.selenium:htmlunit-driver:3.64.0"
}
tasks.withType(Test).configureEach {
useJUnitPlatform()
}