This is an automated email from the ASF dual-hosted git repository. szetszwo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ratis.git
commit c51f09d03798de7acc228b5c814af78c6aa39b68 Author: Tsz-Wo Nicholas Sze <[email protected]> AuthorDate: Wed Mar 5 08:38:37 2025 -0800 RATIS-2255. Migrate ratis-grpc to junit 5. (#1233) --- ratis-grpc/pom.xml | 4 ++-- ratis-metrics-default/pom.xml | 5 ----- ratis-metrics-dropwizard3/pom.xml | 5 ----- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/ratis-grpc/pom.xml b/ratis-grpc/pom.xml index e0736de19..554a1a763 100644 --- a/ratis-grpc/pom.xml +++ b/ratis-grpc/pom.xml @@ -75,8 +75,8 @@ </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> diff --git a/ratis-metrics-default/pom.xml b/ratis-metrics-default/pom.xml index 7e45f4294..1f9e36862 100644 --- a/ratis-metrics-default/pom.xml +++ b/ratis-metrics-default/pom.xml @@ -49,11 +49,6 @@ <artifactId>slf4j-api</artifactId> </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> diff --git a/ratis-metrics-dropwizard3/pom.xml b/ratis-metrics-dropwizard3/pom.xml index d9bf14ddf..45707d8d5 100644 --- a/ratis-metrics-dropwizard3/pom.xml +++ b/ratis-metrics-dropwizard3/pom.xml @@ -53,11 +53,6 @@ <artifactId>slf4j-api</artifactId> </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId>
