Skip to content

Commit b2db645

Browse files
committed
Resolve conflicting publisher settings
1 parent 75d63c8 commit b2db645

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

buildSrc/src/main/kotlin/mcp.jreleaser.gradle.kts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jreleaser {
2222
active = Active.ALWAYS
2323
mavenCentral.create("ossrh") {
2424
active = Active.ALWAYS
25+
sign = true
2526
url = "https://central.sonatype.com/api/v1/publisher"
2627
applyMavenCentralRules = false
2728
maxRetries = 240
@@ -56,14 +57,6 @@ jreleaser {
5657
}
5758
}
5859

59-
release {
60-
github {
61-
enabled = false
62-
skipRelease = true
63-
skipTag = true
64-
}
65-
}
66-
6760
checksum {
6861
individual = false
6962
artifacts = false

buildSrc/src/main/kotlin/mcp.publishing.gradle.kts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,17 @@ publishing {
2626
}
2727
}
2828

29+
organization {
30+
name = "Anthropic"
31+
url = "https://www.anthropic.com"
32+
}
33+
2934
developers {
3035
developer {
31-
id = "Anthropic"
32-
name = "Anthropic Team"
33-
organization = "Anthropic"
34-
organizationUrl = "https://www.anthropic.com"
36+
id = "JetBrains"
37+
name = "JetBrains Team"
38+
organization = "JetBrains"
39+
organizationUrl = "https://www.jetbrains.com"
3540
}
3641
}
3742

0 commit comments

Comments
 (0)