Skip to content

Commit

Permalink
YARN-11339. Upgrade Junit 4 to 5 in hadoop-yarn-services-api (apache#…
Browse files Browse the repository at this point in the history
…4995)

Co-authored-by: Ashutosh Gupta <ashugpt@amazon.com>
Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
  • Loading branch information
2 people authored and HarshitGupta11 committed Nov 28, 2022
1 parent feb7d90 commit 856f8a5
Show file tree
Hide file tree
Showing 6 changed files with 251 additions and 232 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,16 @@
<type>test-jar</type>
<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-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minicluster</artifactId>
Expand All @@ -211,7 +221,17 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minikdc</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>

0 comments on commit 856f8a5

Please sign in to comment.