Skip to content

Commit

Permalink
Remove unused dependencies from IBMSemeruTest
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 2, 2024
1 parent 9d136dc commit e4dc7cf
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/test/java/org/openrewrite/java/migrate/IBMSemeruTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -423,11 +423,7 @@ void gradleDependencyXMLWSModuleExclusion() {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web:2.7.0") {
exclude group: "junit"
}
implementation("javax.xml.ws:jaxws-api:2.0")
testImplementation "org.junit.vintage:junit-vintage-engine:5.6.2"
}
""",
"""
Expand All @@ -438,10 +434,6 @@ void gradleDependencyXMLWSModuleExclusion() {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web:2.7.0") {
exclude group: "junit"
}
testImplementation "org.junit.vintage:junit-vintage-engine:5.6.2"
}
"""
)
Expand Down Expand Up @@ -530,12 +522,8 @@ void gradleDependencyXMLJaxBModuleExclusion() {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web:2.7.0") {
exclude group: "junit"
}
implementation("javax.xml.bind:jaxb-api:2.3.1")
implementation("javax.activation:activation:1.1.1")
testImplementation "org.junit.vintage:junit-vintage-engine:5.6.2"
}
""",
"""
Expand All @@ -546,10 +534,6 @@ void gradleDependencyXMLJaxBModuleExclusion() {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web:2.7.0") {
exclude group: "junit"
}
testImplementation "org.junit.vintage:junit-vintage-engine:5.6.2"
}
"""
)
Expand Down

0 comments on commit e4dc7cf

Please sign in to comment.