From 1a87faf224ed8c8c727dff8b001a829d9f133762 Mon Sep 17 00:00:00 2001 From: Clinton Alexander Date: Wed, 5 Oct 2016 10:46:46 +0100 Subject: [PATCH] Corda JAR now publishes without -capsule at the end. --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 72a6e668f4..93cb377580 100644 --- a/build.gradle +++ b/build.gradle @@ -243,7 +243,6 @@ task installTemplateNodes(dependsOn: 'buildCordaJAR') << { filter(org.apache.tools.ant.filters.FixCrLfFilter.class, eol: org.apache.tools.ant.filters.FixCrLfFilter.CrLf.newInstance("lf")) into "${buildDir}/nodes" } - } publishing { @@ -251,7 +250,9 @@ publishing { corda(MavenPublication) { artifactId 'corda' - artifact buildCordaJAR + artifact buildCordaJAR { + classifier "" + } } } } \ No newline at end of file