From 800cdffc01677850f8f158e753a0b1dab904667c Mon Sep 17 00:00:00 2001 From: devcrocod Date: Sun, 27 Jul 2025 13:26:08 +0200 Subject: [PATCH] Update MavenCentral configuration and developer metadata --- build.gradle.kts | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index ec12f22..efa8999 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -56,6 +56,7 @@ jreleaser { mavenCentral { val ossrh by creating { active.set(Active.ALWAYS) + sign = true url.set("https://central.sonatype.com/api/v1/publisher") applyMavenCentralRules = false maxRetries = 240 @@ -92,16 +93,6 @@ jreleaser { } } - release { - github { - changelog.enabled = false - skipRelease = true - skipTag = true - overwrite = false - token = "none" - } - } - checksum { individual = false artifacts = false @@ -122,12 +113,17 @@ fun MavenPom.configureMavenCentralMetadata() { } } + organization { + name by "Anthropic" + url by "https://www.anthropic.com" + } + developers { developer { - id by "Anthropic" - name by "Anthropic Team" - organization by "Anthropic" - organizationUrl by "https://www.anthropic.com" + id by "JetBrains" + name by "JetBrains Team" + organization by "JetBrains" + organizationUrl by "https://www.jetbrains.com" } }