Skip to content

Commit

Permalink
Use Servlet API 6.0
Browse files Browse the repository at this point in the history
Closes gh-100
  • Loading branch information
marcusdacoregio committed Feb 23, 2023
1 parent 09dbcb8 commit fe16e9b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation "org.springframework.security:spring-security-config"
implementation "org.springframework.security:spring-security-web"

providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
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"
Expand Down
2 changes: 1 addition & 1 deletion servlet/java-configuration/hello-security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation "org.springframework.security:spring-security-config"
implementation "org.springframework.security:spring-security-web"

providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
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"
Expand Down
4 changes: 2 additions & 2 deletions servlet/java-configuration/saml2/login/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
plugins {
id "java"
id "nebula.integtest" version "8.2.0"
id "org.gretty" version "4.0.0"
id "org.gretty" version "4.0.3"
id "war"
}

Expand Down Expand Up @@ -47,7 +47,7 @@ dependencies {
implementation "org.thymeleaf:thymeleaf-spring6:3.1.0.M1"
implementation "org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.0.M1"

providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
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"
Expand Down
2 changes: 1 addition & 1 deletion servlet/xml/java/contacts/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:slf4j-simple:1.7.30'

providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
providedCompile "jakarta.servlet:jakarta.servlet-api:6.0.0"
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl:2.0.0"

runtimeOnly 'net.sf.ehcache:ehcache:2.10.5'
Expand Down
2 changes: 1 addition & 1 deletion servlet/xml/java/dms/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:slf4j-simple:1.7.30'

providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
providedCompile "jakarta.servlet:jakarta.servlet-api:6.0.0"
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl:2.0.0"

runtimeOnly 'net.sf.ehcache:ehcache:2.10.5'
Expand Down
2 changes: 1 addition & 1 deletion servlet/xml/java/helloworld/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:slf4j-simple:1.7.30'

providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
providedCompile "jakarta.servlet:jakarta.servlet-api:6.0.0"
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl:2.0.0"

testImplementation "org.springframework:spring-test"
Expand Down
2 changes: 2 additions & 0 deletions servlet/xml/java/saml2/login-logout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ dependencies {
implementation "org.thymeleaf:thymeleaf-spring6:3.1.0.M1"
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.0.M1'

providedCompile "jakarta.servlet:jakarta.servlet-api:6.0.0"

testImplementation "org.assertj:assertj-core:3.18.0"
testImplementation "org.springframework:spring-test"
testImplementation "org.springframework.security:spring-security-test"
Expand Down

0 comments on commit fe16e9b

Please sign in to comment.