Skip to content

Commit 507cf6c

Browse files
committed
Change repository path
1 parent 8101c97 commit 507cf6c

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

build.gradle.kts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,29 @@ 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+
6776
strict.set(true)
6877

6978
signing {
7079
active.set(Active.ALWAYS)
71-
armored = true
80+
armored.set(true)
7281
}
82+
7383
deploy {
7484
maven {
7585
mavenCentral {
7686
val ossrh by creating {
7787
active.set(Active.ALWAYS)
7888
url.set("https://central.sonatype.com/api/v1/publisher")
79-
stagingRepository("target/staging-deploy")
89+
stagingRepository(layout.buildDirectory.dir("staging-deploy").get().asFile.path)
8090
}
8191
}
8292
}

0 commit comments

Comments
 (0)