From 74d188aabb6417d83965831de47422eb541d1df5 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Mon, 5 May 2014 10:34:34 +0200 Subject: [PATCH] Fix appendix in smack-core Now that we do not longer use the appendix for the subproject name (91fd15) we need to set instead of appending the appendix in smack-core. --- smack-core/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smack-core/build.gradle b/smack-core/build.gradle index bf9f2aba4..faa2a514f 100644 --- a/smack-core/build.gradle +++ b/smack-core/build.gradle @@ -16,7 +16,7 @@ dependencies { } task compressionJar(type: Jar) { - appendix += '-compression' + appendix = 'compression' dependsOn classes from sourceSets.main.output include('org/jivesoftware/smack/compression/**') @@ -24,7 +24,7 @@ task compressionJar(type: Jar) { } task dnsJar(type: Jar) { - appendix += '-dns' + appendix = 'dns' dependsOn classes from sourceSets.main.output include('org/jivesoftware/smack/util/dns/**')