Skip to content

Commit

Permalink
hard code gobblin-utility jar name for gobblin-proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
zliu41 committed Jun 24, 2015
1 parent ece9175 commit b8d74b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gobblin-utility/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,17 @@ test {
classification="library"


jar {
archiveName = "gobblin-utility.jar"
}

task utilityTar(type: Tar) {
extension = 'tar.gz'
baseName = project.name
compression = Compression.GZIP

into("lib") { from configurations.runtime }
into("lib") { from "${project.rootDir}/build/${project.name}/libs/${project.name}.jar"}
into("lib") { from "${project.rootDir}/build/${project.name}/libs/gobblin-utility.jar"}
into("bin") {
from "src/main/bash"
fileMode = 0755
Expand Down

0 comments on commit b8d74b8

Please sign in to comment.