Remove dependency downgrades for Jetty

The downgrades are no longer needed as Boot 3.2 uses Jetty 12
which supports Jakarta EE 10.
This commit is contained in:
Andy Wilkinson
2023-09-21 18:09:26 +01:00
parent 20907409d2
commit 7e9ae3f7b5
3 changed files with 0 additions and 23 deletions

View File

@@ -15,17 +15,6 @@ dependencies {
replacedBy("org.springframework.boot:spring-boot-starter-jetty", "Use Jetty instead of Netty")
}
}
// Downgrades for Jetty, see https://github.com/spring-projects/spring-boot/issues/33044
implementation("jakarta.servlet:jakarta.servlet-api") {
version {
strictly "5.0.0"
}
}
implementation("jakarta.websocket:jakarta.websocket-api") {
version {
strictly "2.0.0"
}
}
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")

View File

@@ -14,12 +14,6 @@ dependencies {
replacedBy("org.springframework.boot:spring-boot-starter-jetty", "Use Jetty instead of Tomcat")
}
}
// Downgrade for Jetty, see https://github.com/spring-projects/spring-boot/issues/33044
implementation("jakarta.servlet:jakarta.servlet-api") {
version {
strictly "5.0.0"
}
}
testImplementation("org.springframework.boot:spring-boot-starter-test")

View File

@@ -15,12 +15,6 @@ dependencies {
replacedBy("org.springframework.boot:spring-boot-starter-jetty", "Use Jetty instead of Tomcat")
}
}
// Downgrade for Jetty, see https://github.com/spring-projects/spring-boot/issues/33044
implementation("jakarta.servlet:jakarta.servlet-api") {
version {
strictly "5.0.0"
}
}
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")