Skip to content

Commit

Permalink
HBASE-28768 hbase-table-reporter shoud use the hbase.version declared…
Browse files Browse the repository at this point in the history
… in the parent pom.xml and use junit for UT

Signed-off-by: Pankaj Kumar <[email protected]>
Signed-off-by: Nihal Jain <[email protected]>
  • Loading branch information
guluo2016 authored Aug 8, 2024
1 parent 7c738fc commit ff7dae1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion hbase-table-reporter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@
<maven.compiler.version>3.6.1</maven.compiler.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand All @@ -46,7 +52,7 @@
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-client</artifactId>
<version>2.1.1</version>
<version>${hbase.version}</version>
</dependency>
<dependency>
<groupId>org.apache.datasketches</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
package org.apache.hbase.reporter;

import static org.apache.hadoop.hbase.shaded.junit.framework.TestCase.assertEquals;
import static org.junit.Assert.assertEquals;

import java.util.ArrayList;
import java.util.List;
Expand Down

0 comments on commit ff7dae1

Please sign in to comment.