Skip to content

Commit

Permalink
Fix issue with shadow jar
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Dec 3, 2020
1 parent a461074 commit 2b3faad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
}
shadowJar {
classifier = ''
zip64 true
classifier = ""
mergeServiceFiles {
setPath("META-INF/services")
include("io.grpc.*")
}
}
assemble.dependsOn shadowJar
artifacts {
Expand Down

0 comments on commit 2b3faad

Please sign in to comment.