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

Reviewed-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
Takanobu Asanuma 2024-03-26 09:40:28 +09:00 committed by GitHub
parent c4f7a3625b
commit 8bc4939ee2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>