mirror of
https://github.com/corda/corda.git
synced 2025-04-09 04:15:35 +00:00
Revert "Cordapps now exclude the META-INF of dependencies."
This reverts commit 68068e5640cf6c00ec452b2ed95bc3b4006b2f3f.
This commit is contained in:
parent
68068e5640
commit
2b3f6d9701
@ -1,4 +1,4 @@
|
||||
gradlePluginsVersion=0.13.2
|
||||
gradlePluginsVersion=0.13.1
|
||||
kotlinVersion=1.1.1
|
||||
guavaVersion=21.0
|
||||
bouncycastleVersion=1.57
|
||||
|
@ -24,9 +24,7 @@ class Cordformation implements Plugin<Project> {
|
||||
// Note: project.afterEvaluate did not have full dependency resolution completed, hence a task is used instead
|
||||
def task = project.task('configureCordappFatJar') {
|
||||
doLast {
|
||||
project.tasks.jar.from getDirectNonCordaDependencies(project).collect {
|
||||
project.zipTree(it).matching { exclude { it.path.contains('META-INF') } }
|
||||
}.flatten()
|
||||
project.tasks.jar.from getDirectNonCordaDependencies(project).collect { project.zipTree(it) }.flatten()
|
||||
}
|
||||
}
|
||||
project.tasks.jar.dependsOn task
|
||||
|
Loading…
x
Reference in New Issue
Block a user