Skip to content

Commit

Permalink
ContribJar is missing in the Tar/Zip
Browse files Browse the repository at this point in the history
Some of the commands from the shell fails because of missing
contribJar in the tar ball.

Include contribJar and protobufJar from the dist directory.
  • Loading branch information
arunthirupathi committed Apr 18, 2016
1 parent 7128033 commit b128422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -266,7 +266,7 @@ task copyDeps(type: Copy) {
}

task zip (type: Zip) {
dependsOn copySources, copyDeps
dependsOn copySources, copyDeps, contribJar, protobufJar
baseName = projectName

from(distDir) {
Expand All @@ -282,7 +282,7 @@ task zip (type: Zip) {
}

task tar (type: Tar) {
dependsOn copySources, copyDeps
dependsOn copySources, copyDeps, contribJar, protobufJar
compression = Compression.GZIP
baseName = projectName
extension = "tar.gz"
Expand Down

0 comments on commit b128422

Please sign in to comment.