From c92453fb14ef21674cd00194ec28bfa186f2eef2 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Tue, 24 Sep 2024 15:40:40 -0700 Subject: [PATCH] s2a: Disabling publishing until it is ready for users --- s2a/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/s2a/build.gradle b/s2a/build.gradle index 234f983fd5..af2c879a75 100644 --- a/s2a/build.gradle +++ b/s2a/build.gradle @@ -1,6 +1,5 @@ plugins { id "java-library" - id "maven-publish" id "com.github.johnrengelman.shadow" id "com.google.osdetector" @@ -90,6 +89,7 @@ tasks.named("shadowJar").configure { relocate 'io.netty', 'io.grpc.netty.shaded.io.netty' } +plugins.withId('maven-publish') { publishing { publications { maven(MavenPublication) { @@ -111,3 +111,4 @@ publishing { } } } +}