File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -64,19 +64,29 @@ publishing {
64
64
}
65
65
66
66
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
76
strict.set(true )
68
77
69
78
signing {
70
79
active.set(Active .ALWAYS )
71
- armored = true
80
+ armored.set( true )
72
81
}
82
+
73
83
deploy {
74
84
maven {
75
85
mavenCentral {
76
86
val ossrh by creating {
77
87
active.set(Active .ALWAYS )
78
88
url.set(" https://central.sonatype.com/api/v1/publisher" )
79
- stagingRepository(" target/ staging-deploy" )
89
+ stagingRepository(layout.buildDirectory.dir( " staging-deploy" ).get().asFile.path )
80
90
}
81
91
}
82
92
}
You can’t perform that action at this time.
0 commit comments