From b106abbc2faa1e8090bea9b5f3a2b1df2ca9b3b5 Mon Sep 17 00:00:00 2001 From: ding-weibing Date: Sat, 13 Jul 2024 19:11:29 +0900 Subject: [PATCH] Remove duplicate dependency from build.gradle The 'testImplementation' for 'org.testcontainers:junit-jupiter' was listed twice in the build.gradle file. This commit removes the duplicate entry to avoid redundancy and ensure a cleaner dependency management. --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index d42abf7..188bc3c 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,6 @@ dependencies { testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.testcontainers:junit-jupiter' testImplementation 'org.springframework.kafka:spring-kafka-test' - testImplementation 'org.testcontainers:junit-jupiter' testImplementation 'org.testcontainers:kafka' testImplementation 'org.testcontainers:mysql' testImplementation 'org.awaitility:awaitility'