Skip to content

Commit

Permalink
submit all.
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorZeng committed Oct 31, 2019
1 parent 674467e commit d3da73a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

<properties>
<java.version>1.8</java.version>
<hbase.version>2.0.0-cdh6.0.1</hbase.version>
</properties>

<dependencies>
Expand All @@ -38,7 +39,7 @@
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
<version>2.0.0-cdh6.0.1</version>
<version>${hbase.version}</version>
<exclusions>
<exclusion>
<artifactId>servlet-api</artifactId>
Expand All @@ -53,7 +54,7 @@
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>2.0.0-cdh6.0.1</version>
<version>${hbase.version}</version>
<exclusions>
<exclusion>
<artifactId>servlet-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.faw.hbase.hbaserepair;
package org.darkphoenixs.hbase.repair;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.faw.hbase.hbaserepair;
package org.darkphoenixs.hbase.repair;

import com.alibaba.fastjson.JSON;
import lombok.extern.slf4j.Slf4j;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.darkphoenixs.hbase.repair;

import lombok.extern.slf4j.Slf4j;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
@Slf4j
public class HbaseRepairApplicationTest {

}

0 comments on commit d3da73a

Please sign in to comment.