Skip to content

Commit 1e3c65f

Browse files
committed
Update to jakarta.servlet-api dependency
Closes gh-1960
1 parent 10ebde5 commit 1e3c65f

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

gradle/dependency-management.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencyManagement {
2323
dependency 'edu.umd.cs.mtc:multithreadedtc:1.01'
2424
dependency 'io.lettuce:lettuce-core:6.1.5.RELEASE'
2525
dependency 'jakarta.annotation:jakarta.annotation-api:1.3.5'
26-
dependency 'javax.servlet:javax.servlet-api:4.0.1'
26+
dependency 'jakarta.servlet:jakarta.servlet-api:4.0.4'
2727
dependency 'junit:junit:4.13.2'
2828
dependency 'mysql:mysql-connector-java:8.0.27'
2929
dependency 'org.apache.derby:derby:10.14.2.0'

spring-session-core/spring-session-core.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77

88
optional "io.projectreactor:reactor-core"
99
optional "jakarta.annotation:jakarta.annotation-api"
10-
optional "javax.servlet:javax.servlet-api"
10+
optional "jakarta.servlet:jakarta.servlet-api"
1111
optional "org.springframework:spring-context"
1212
optional "org.springframework:spring-jdbc"
1313
optional "org.springframework:spring-messaging"

spring-session-data-redis/spring-session-data-redis.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
optional "org.springframework:spring-web"
1313

1414
testCompile "io.projectreactor:reactor-test"
15-
testCompile "javax.servlet:javax.servlet-api"
15+
testCompile "jakarta.servlet:jakarta.servlet-api"
1616
testCompile "org.springframework:spring-web"
1717
testCompile "org.springframework.security:spring-security-core"
1818
testCompile "org.junit.jupiter:junit-jupiter-api"

spring-session-docs/spring-session-docs.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
testCompile 'org.assertj:assertj-core'
1919
testCompile 'com.hazelcast:hazelcast'
2020
testCompile 'io.lettuce:lettuce-core'
21-
testCompile 'javax.servlet:javax.servlet-api'
21+
testCompile 'jakarta.servlet:jakarta.servlet-api'
2222
testCompile 'org.junit.jupiter:junit-jupiter-api'
2323
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
2424
}

spring-session-hazelcast/hazelcast4/hazelcast4.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies {
3535
compile "org.springframework:spring-context"
3636
compile "jakarta.annotation:jakarta.annotation-api"
3737

38-
testCompile "javax.servlet:javax.servlet-api"
38+
testCompile "jakarta.servlet:jakarta.servlet-api"
3939
testCompile "org.springframework:spring-web"
4040
testCompile "org.junit.jupiter:junit-jupiter-api"
4141
testCompile "org.springframework.security:spring-security-core"

spring-session-hazelcast/spring-session-hazelcast.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
hazelcast4(project(path: ":hazelcast4", configuration: 'classesOnlyElements'))
1414
compileOnly(project(":hazelcast4"))
1515

16-
testCompile "javax.servlet:javax.servlet-api"
16+
testCompile "jakarta.servlet:jakarta.servlet-api"
1717
testCompile "org.springframework:spring-web"
1818
testCompile "org.springframework.security:spring-security-core"
1919
testCompile "org.junit.jupiter:junit-jupiter-api"

spring-session-jdbc/spring-session-jdbc.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compile "org.springframework:spring-context"
88
compile "org.springframework:spring-jdbc"
99

10-
testCompile "javax.servlet:javax.servlet-api"
10+
testCompile "jakarta.servlet:jakarta.servlet-api"
1111
testCompile "org.springframework:spring-web"
1212
testCompile "org.springframework.security:spring-security-core"
1313
testCompile "org.junit.jupiter:junit-jupiter-api"

spring-session-samples/spring-session-sample-javaconfig-custom-cookie/spring-session-sample-javaconfig-custom-cookie.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compile slf4jDependencies
1111
compile "org.testcontainers:testcontainers"
1212

13-
providedCompile "javax.servlet:javax.servlet-api"
13+
providedCompile "jakarta.servlet:jakarta.servlet-api"
1414

1515
testCompile "org.assertj:assertj-core"
1616
testCompile "org.junit.jupiter:junit-jupiter-api"

spring-session-samples/spring-session-sample-javaconfig-hazelcast/spring-session-sample-javaconfig-hazelcast.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
compile jstlDependencies
1313
compile slf4jDependencies
1414

15-
providedCompile "javax.servlet:javax.servlet-api"
15+
providedCompile "jakarta.servlet:jakarta.servlet-api"
1616
providedCompile "javax.servlet.jsp:javax.servlet.jsp-api"
1717

1818
testCompile "org.assertj:assertj-core"

spring-session-samples/spring-session-sample-javaconfig-jdbc/spring-session-sample-javaconfig-jdbc.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compile jstlDependencies
1010
compile slf4jDependencies
1111

12-
providedCompile "javax.servlet:javax.servlet-api"
12+
providedCompile "jakarta.servlet:jakarta.servlet-api"
1313

1414
testCompile "org.assertj:assertj-core"
1515
testCompile "org.junit.jupiter:junit-jupiter-api"

0 commit comments

Comments
 (0)