Merge pull request #39750 from dreis2211

* pr/39750:
  Remove obsolete JDK 9 check in spring-boot-smoke-test-jersey

Closes gh-39750
This commit is contained in:
Scott Frederick 2024-02-27 13:29:03 -06:00
commit 76c7371258
1 changed files with 1 additions and 3 deletions

View File

@ -10,9 +10,7 @@ dependencies {
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jersey"))
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
if (JavaVersion.current().java9Compatible) {
runtimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
}
runtimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
}