Update samples to use Spring Security 6

Issue gh-46
This commit is contained in:
Marcus Da Coregio
2022-03-17 14:44:26 -03:00
parent 545ffedea3
commit bce2126fd1
101 changed files with 347 additions and 306 deletions

View File

@@ -1 +1 @@
version=5.6.0-SNAPSHOT
version=6.0.0-SNAPSHOT

View File

@@ -1 +1 @@
version=5.6.0-SNAPSHOT
version=6.0.0-SNAPSHOT

View File

@@ -1 +1 @@
version=5.6.0-SNAPSHOT
version=6.0.0-SNAPSHOT

View File

@@ -1 +1 @@
version=5.6.0-SNAPSHOT
version=6.0.0-SNAPSHOT

View File

@@ -1,6 +1,7 @@
plugins {
id "java"
id "org.gretty" version "3.0.6"
id "nebula.integtest" version "8.2.0"
id "org.gretty" version "4.0.0"
id "war"
}
@@ -34,7 +35,7 @@ dependencies {
testImplementation "org.springframework:spring-test"
testImplementation "org.springframework.security:spring-security-test"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation 'net.sourceforge.htmlunit:htmlunit:2.49.1'
testImplementation 'net.sourceforge.htmlunit:htmlunit:2.44.0'
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")

View File

@@ -1 +1 @@
version=5.7.0-SNAPSHOT
version=6.0.0-SNAPSHOT

View File

@@ -1,5 +1,5 @@
gretty {
servletContainer = "tomcat9"
servletContainer = "tomcat10"
contextPath = "/"
fileLogEnabled = false
integrationTestTask = 'integrationTest'
@@ -38,4 +38,4 @@ project.tasks.matching { it.name == "integrationTest" }.all {
integrationTest.systemProperty 'app.httpBaseURI', httpBaseUrl
integrationTest.systemProperty 'app.httpsBaseURI', httpsBaseUrl
}
}
}