Skip to content

Commit

Permalink
chore: correct jar task
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Stevenson committed Sep 1, 2017
1 parent 5e7baf4 commit 176b65b
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions build.gradle
Expand Up @@ -204,31 +204,6 @@ allprojects {

jar {
zip64 true
dependsOn configurations.runtime
from {
(configurations.runtime - configurations.provided).collect {
it.isDirectory() ? it : zipTree(it)
}
} {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
jar.archiveName = "$project.name-$project.version-$confluentVersion-all.jar"
}

jar {
dependsOn configurations.runtime
from {
(configurations.runtime - configurations.provided).collect {
it.isDirectory() ? it : zipTree(it)
}
} {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
jar.archiveName = "$project.name-$project.version-$confluentVersion-all.jar"
}

task collectJars(type: Copy) {
Expand Down

0 comments on commit 176b65b

Please sign in to comment.