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 {
33
33
}
34
34
}
35
35
}
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 {
34
34
}
35
35
}
36
36
}
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