Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. tasks {
  2. "shadowJar"(ShadowJar::class) {
  3. isZip64 = true
  4. archiveFileName.set("${project.name}.jar")
  5. dependencies {
  6. include(dependency(".*:.*:.*"))
  7. exclude(dependency("org.apache.spark:.*"))
  8. }
  9. }
  10. }
  11.  
  12. tasks {
  13. "build" {
  14. dependsOn("shadowJar")
  15. }
  16. }
  17.  
  18. org.gradle.parallel=true
  19. org.gradle.caching=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement