We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c8790 commit 33a6735Copy full SHA for 33a6735
ktor-plugins/rsocket-ktor-client/build.gradle.kts
@@ -33,3 +33,16 @@ kotlin {
33
}
34
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
+}
ktor-plugins/rsocket-ktor-server/build.gradle.kts
@@ -34,3 +34,16 @@ kotlin {
+ artifactId.replace("rsocket-ktor-server", "ktor-server-rsocket")
49
0 commit comments