File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -33,3 +33,16 @@ kotlin {
3333 }
3434 }
3535}
36+
37+ publishing.publications.withType<MavenPublication >().configureEach {
38+ val newArtifactId = provider {
39+ artifactId.replace(" rsocket-ktor-client" , " ktor-client-rsocket" )
40+ }
41+ pom {
42+ distributionManagement {
43+ relocation {
44+ artifactId = newArtifactId
45+ }
46+ }
47+ }
48+ }
Original file line number Diff line number Diff line change @@ -34,3 +34,16 @@ kotlin {
3434 }
3535 }
3636}
37+
38+ publishing.publications.withType<MavenPublication >().configureEach {
39+ val newArtifactId = provider {
40+ artifactId.replace(" rsocket-ktor-server" , " ktor-server-rsocket" )
41+ }
42+ pom {
43+ distributionManagement {
44+ relocation {
45+ artifactId = newArtifactId
46+ }
47+ }
48+ }
49+ }
You can’t perform that action at this time.
0 commit comments