From dd3ba686b3b6be893f777da4ffb83ad10753d832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Segovia=20C=C3=B3rdoba?= Date: Wed, 9 Oct 2024 21:47:12 +0200 Subject: [PATCH] Disable publishing to Gradle Portal on `project` and `settings` projects --- semver-project-gradle-plugin/build.gradle.kts | 6 +++++- semver-settings-gradle-plugin/build.gradle.kts | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/semver-project-gradle-plugin/build.gradle.kts b/semver-project-gradle-plugin/build.gradle.kts index 301efd4d..387ce155 100644 --- a/semver-project-gradle-plugin/build.gradle.kts +++ b/semver-project-gradle-plugin/build.gradle.kts @@ -6,7 +6,11 @@ hubdle { api() } explicitApi() - publishing() + publishing { + gradlePortal { // + isEnabled = false + } + } } kotlin { jvm { diff --git a/semver-settings-gradle-plugin/build.gradle.kts b/semver-settings-gradle-plugin/build.gradle.kts index 53d184c4..56580456 100644 --- a/semver-settings-gradle-plugin/build.gradle.kts +++ b/semver-settings-gradle-plugin/build.gradle.kts @@ -6,7 +6,11 @@ hubdle { api() } explicitApi() - publishing() + publishing { + gradlePortal { // + isEnabled = false + } + } } kotlin { jvm {