build.gradle

27 lines | 488 B Blame History Raw Download
apply plugin: 'distribution'

dependencies {
  compile(project(':azkaban-common'))

  testCompile('org.hamcrest:hamcrest-all:1.3')
  testCompile(project(':azkaban-common').sourceSets.test.output)
  testCompile('com.google.guava:guava:13.0.1')
}

distributions {
  main {
    contents {
      from('src/main/bash') {
        into 'bin'
        fileMode = 0755
      }
      from(configurations.runtime) {
        into 'lib'
      }
      from(jar) {
        into 'lib'
      }
    }
  }
}