From 6b40d2db1e53934e44d9846bf9d6ca006755fb86 Mon Sep 17 00:00:00 2001 From: Nathan Klick Date: Tue, 27 Jun 2023 11:56:37 -0500 Subject: [PATCH] feat: publish the helm client to maven central (#123) Signed-off-by: Nathan Klick --- fullstack-helm-client/build.gradle.kts | 7 ++++++- fullstack-helm-client/gradle.properties | 18 ------------------ 2 files changed, 6 insertions(+), 19 deletions(-) delete mode 100644 fullstack-helm-client/gradle.properties diff --git a/fullstack-helm-client/build.gradle.kts b/fullstack-helm-client/build.gradle.kts index a2049d1ed..16158e995 100644 --- a/fullstack-helm-client/build.gradle.kts +++ b/fullstack-helm-client/build.gradle.kts @@ -16,7 +16,10 @@ import com.hedera.fullstack.gradle.helm.release.HelmArtifactTask -plugins { id("com.hedera.fullstack.conventions") } +plugins { + id("com.hedera.fullstack.conventions") + id("com.hedera.fullstack.maven-publish") +} tasks.register("helmArtifacts") @@ -33,3 +36,5 @@ dependencies { testImplementation(gav("org.mockito.junit.jupiter")) } } + +tasks.named("sourcesJar") { dependsOn(tasks.withType()) } diff --git a/fullstack-helm-client/gradle.properties b/fullstack-helm-client/gradle.properties deleted file mode 100644 index cc7fe5a37..000000000 --- a/fullstack-helm-client/gradle.properties +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (C) 2023 Hedera Hashgraph, LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -mavenPublishingEnabled = false -