From 2d96c12866832143e94d27d4968901d43e224e2b Mon Sep 17 00:00:00 2001 From: Dan Van Atta Date: Mon, 29 Jul 2024 13:36:10 -0700 Subject: [PATCH] Publish just a standard JAR and not a shadow jar for http-clients (#12795) Shadow jar causes version issues for server, since the shadow jar brings in a variety of dependencies that are potentially not compatible. --- http-clients/lobby-client/build.gradle | 5 ----- 1 file changed, 5 deletions(-) diff --git a/http-clients/lobby-client/build.gradle b/http-clients/lobby-client/build.gradle index c3f44bed7d..6c3a3ae0cf 100644 --- a/http-clients/lobby-client/build.gradle +++ b/http-clients/lobby-client/build.gradle @@ -34,9 +34,4 @@ publishing { } } } - publications { - shadow(MavenPublication) { publication -> - project.shadow.component(publication) - } - } }