소스 검색

HDFS-17441. Fix junit dependency by adding missing library in hadoop-hdfs-rbf. (#6669)

Reviewed-by: Ayush Saxena <ayushsaxena@apache.org>
(cherry picked from commit 8bc4939ee2064953a3b2ea745c26055aa1b85907)
Takanobu Asanuma 1 년 전
부모
커밋
6713a96e53
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      hadoop-hdfs-project/hadoop-hdfs-rbf/pom.xml

+ 10 - 0
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>