Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions buildSrc/src/main/kotlin/mcp.jreleaser.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jreleaser {
active = Active.ALWAYS
mavenCentral.create("ossrh") {
active = Active.ALWAYS
sign = true
url = "https://central.sonatype.com/api/v1/publisher"
applyMavenCentralRules = false
maxRetries = 240
Expand Down Expand Up @@ -56,14 +57,6 @@ jreleaser {
}
}

release {
github {
enabled = false
skipRelease = true
skipTag = true
}
}

checksum {
individual = false
artifacts = false
Expand Down
13 changes: 9 additions & 4 deletions buildSrc/src/main/kotlin/mcp.publishing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,17 @@ publishing {
}
}

organization {
name = "Anthropic"
url = "https://www.anthropic.com"
}

developers {
developer {
id = "Anthropic"
name = "Anthropic Team"
organization = "Anthropic"
organizationUrl = "https://www.anthropic.com"
id = "JetBrains"
name = "JetBrains Team"
organization = "JetBrains"
organizationUrl = "https://www.jetbrains.com"
}
}

Expand Down
Loading