This is an automated email from the ASF dual-hosted git repository. tasanuma pushed a commit to branch branch-3.4 in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.4 by this push: new 6713a96e5361 HDFS-17441. Fix junit dependency by adding missing library in hadoop-hdfs-rbf. (#6669) 6713a96e5361 is described below commit 6713a96e5361b6ea48a17e46c3b9996f58c89e81 Author: Takanobu Asanuma <tasan...@apache.org> AuthorDate: Tue Mar 26 09:40:28 2024 +0900 HDFS-17441. Fix junit dependency by adding missing library in hadoop-hdfs-rbf. (#6669) Reviewed-by: Ayush Saxena <ayushsax...@apache.org> (cherry picked from commit 8bc4939ee2064953a3b2ea745c26055aa1b85907) --- hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml b/hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml index ac59dd1714ad..4f508ecc52d2 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml +++ b/hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml @@ -172,6 +172,11 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> @@ -187,6 +192,11 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org