Skip to content

Commit c0f404e

Browse files
committed
Update publication config
1 parent 507cf6c commit c0f404e

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

build.gradle.kts

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,24 +64,19 @@ publishing {
6464
}
6565

6666
jreleaser {
67-
project {
68-
name.set(project.name)
69-
version.set(project.version.toString())
70-
description.set("Kotlin implementation of the Model Context Protocol (MCP)")
71-
website.set("https://github.com/modelcontextprotocol/kotlin-sdk")
72-
authors.set(listOf("Anthropic Team"))
73-
license.set("MIT")
74-
}
75-
67+
gitRootSearch = true
7668
strict.set(true)
7769

7870
signing {
7971
active.set(Active.ALWAYS)
8072
armored.set(true)
73+
artifacts.set(true)
8174
}
8275

8376
deploy {
77+
active.set(Active.ALWAYS)
8478
maven {
79+
active.set(Active.ALWAYS)
8580
mavenCentral {
8681
val ossrh by creating {
8782
active.set(Active.ALWAYS)
@@ -91,6 +86,15 @@ jreleaser {
9186
}
9287
}
9388
}
89+
90+
release {
91+
github {
92+
skipRelease = true
93+
skipTag = true
94+
overwrite = false
95+
token = "none"
96+
}
97+
}
9498
}
9599

96100
fun MavenPom.configureMavenCentralMetadata() {

0 commit comments

Comments
 (0)