HDFS-17432. Fix junit dependency to enable JUnit4 tests to run in hadoop-hdfs-rbf (#6639)

Reviewed-by: Dinesh Chitlangia <dineshc@apache.org>
This commit is contained in:
Takanobu Asanuma 2024-03-21 14:53:02 +09:00 committed by GitHub
parent 2eb7246ea7
commit adab3a22aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -182,6 +182,11 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>