网上实现的方式挺多的,这里选择shadow
方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.4"
}
}
apply plugin: "com.github.johnrengelman.shadow"
version = '0.0.1-SNAPSHOT'
apply plugin: 'java'
group 'com.dounine.gradle'
sourceCompatibility = 1.8
jar {
manifest {
attributes 'Implementation-Title': 'Application',
'Implementation-Version': version,
'Main-Class': 'com.dounine.gradle.Application'
}
}
shadowJar {
zip64 true
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile(group: 'org.apache.hbase', name: 'hbase-client', version: '2.0.0'){
exclude group: 'org.slf4j'
}
}
网友评论