From e4dc7cf3dd5e44d3013423fff0a4ca630a763535 Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Sat, 2 Nov 2024 11:22:21 +0100 Subject: [PATCH] Remove unused dependencies from IBMSemeruTest --- .../openrewrite/java/migrate/IBMSemeruTest.java | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/test/java/org/openrewrite/java/migrate/IBMSemeruTest.java b/src/test/java/org/openrewrite/java/migrate/IBMSemeruTest.java index fa48ebeae9..42b69ccc5e 100644 --- a/src/test/java/org/openrewrite/java/migrate/IBMSemeruTest.java +++ b/src/test/java/org/openrewrite/java/migrate/IBMSemeruTest.java @@ -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" } """, """ @@ -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" } """ ) @@ -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" } """, """ @@ -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" } """ )