Test

Groovy (beta) code posted
created at 19 Jun 08:38

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
group 'com.coupang.utils.hbasewrapper'
version '1.0-SNAPSHOT'

dependencies {
  compile group: 'org.apache.hbase', name: 'hbase-client', version: '1.3.0'
  compile group: 'org.apache.hbase', name: 'hbase-server', version: '1.2.2'
}

apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'

shadowJar {
  baseName = 'hbasewrapper'
  version = null
  zip64 true
  relocate ('com.google.protobuf', 'hbasewrapper.com.google.protobuf')
  mergeServiceFiles()
}
479 Bytes in 2 ms with coderay