aboutsummaryrefslogtreecommitdiff
path: root/netty
diff options
context:
space:
mode:
Diffstat (limited to 'netty')
-rw-r--r--netty/shaded/build.gradle6
1 files changed, 6 insertions, 0 deletions
diff --git a/netty/shaded/build.gradle b/netty/shaded/build.gradle
index a44ebef81..434b7fb10 100644
--- a/netty/shaded/build.gradle
+++ b/netty/shaded/build.gradle
@@ -24,6 +24,12 @@ artifacts { // We want uploadArchives to handle the shadowJar; we don't care abo
// uploadShadow
archives shadowJar }
+jar {
+ // Must use a different classifier to avoid conflicting with shadowJar
+ classifier = 'original'
+}
+configurations.archives.artifacts.removeAll { it.classifier == "original" }
+
shadowJar {
classifier = null
dependencies {