فهرست منبع

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>