Skip to content

Commit 947d5ee

Browse files
author
olme04
authored
fix projects descriptions (#224)
1 parent 0f5cc2c commit 947d5ee

File tree

12 files changed

+38
-35
lines changed

12 files changed

+38
-35
lines changed

buildSrc/src/main/kotlin/rsocket.publication.gradle.kts

+26-24
Original file line numberDiff line numberDiff line change
@@ -34,35 +34,37 @@ publishing {
3434
publications.withType<MavenPublication> {
3535
artifact(javadocJar.get())
3636

37-
pom {
38-
name.set(project.name)
39-
description.set(project.description)
40-
url.set("http://rsocket.io")
37+
afterEvaluate {
38+
pom {
39+
name.set(project.name)
40+
description.set(project.description)
41+
url.set("http://rsocket.io")
4142

42-
licenses {
43-
license {
44-
name.set("The Apache Software License, Version 2.0")
45-
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
46-
distribution.set("repo")
43+
licenses {
44+
license {
45+
name.set("The Apache Software License, Version 2.0")
46+
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
47+
distribution.set("repo")
48+
}
4749
}
48-
}
49-
developers {
50-
developer {
51-
id.set("whyoleg")
52-
name.set("Oleg Yukhnevich")
53-
email.set("whyoleg@gmail.com")
50+
developers {
51+
developer {
52+
id.set("whyoleg")
53+
name.set("Oleg Yukhnevich")
54+
email.set("whyoleg@gmail.com")
55+
}
56+
developer {
57+
id.set("OlegDokuka")
58+
name.set("Oleh Dokuka")
59+
email.set("oleh.dokuka@icloud.com")
60+
}
5461
}
55-
developer {
56-
id.set("OlegDokuka")
57-
name.set("Oleh Dokuka")
58-
email.set("oleh.dokuka@icloud.com")
62+
scm {
63+
connection.set("https://github.com/rsocket/rsocket-kotlin.git")
64+
developerConnection.set("https://github.com/rsocket/rsocket-kotlin.git")
65+
url.set("https://github.com/rsocket/rsocket-kotlin")
5966
}
6067
}
61-
scm {
62-
connection.set("https://github.com/rsocket/rsocket-kotlin.git")
63-
developerConnection.set("https://github.com/rsocket/rsocket-kotlin.git")
64-
url.set("https://github.com/rsocket/rsocket-kotlin")
65-
}
6668
}
6769
}
6870

rsocket-core/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ kotlin {
3737
configureNative()
3838
}
3939

40-
description = "Core functionality for the RSocket library"
40+
description = "RSocket core functionality"

rsocket-ktor/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ kotlin {
3333
configureNative()
3434
}
3535

36-
description = "Ktor RSocket integration"
36+
description = "RSocket ktor integration"

rsocket-ktor/rsocket-ktor-client/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ kotlin {
3232
configureNative()
3333
}
3434

35-
description = "Ktor Client RSocket plugin"
35+
description = "RSocket ktor client plugin"

rsocket-ktor/rsocket-ktor-server/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ kotlin {
3939
configureNative(NativeTargets.Nix)
4040
}
4141

42-
description = "Ktor Server RSocket Plugin"
42+
description = "RSocket ktor server plugin"

rsocket-transport-ktor/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ kotlin {
3131
configureNative()
3232
}
3333

34-
description = "Ktor RSocket transport implementations (TCP, Websocket)"
34+
description = "RSocket ktor transport utilities"

rsocket-transport-ktor/rsocket-transport-ktor-tcp/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ kotlin {
3131
configureNative(NativeTargets.Nix)
3232
}
3333

34-
description = "Ktor TCP RSocket transport implementation"
34+
description = "RSocket ktor TCP client/server transport implementation"

rsocket-transport-ktor/rsocket-transport-ktor-websocket-client/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ kotlin {
3434
configureNative()
3535
}
3636

37-
description = "Ktor WebSocket Client RSocket transport implementation"
37+
description = "RSocket ktor WebSocket client transport implementation"
3838

3939
evaluationDependsOn(":rsocket-transport-tests")

rsocket-transport-ktor/rsocket-transport-ktor-websocket-server/build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,4 @@ kotlin {
4848
}
4949
configureNative(NativeTargets.Nix)
5050
}
51-
52-
description = "Ktor WebSocket Server RSocket transport implementation"
51+
description = "RSocket ktor WebSocket server transport implementation"

rsocket-transport-ktor/rsocket-transport-ktor-websocket/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ kotlin {
3232
configureNative()
3333
}
3434

35-
description = "Ktor WebSocket RSocket transport implementation"
35+
description = "RSocket ktor WebSocket transport utilities"

rsocket-transport-local/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ kotlin {
3131
configureNative()
3232
}
3333

34-
description = "Local RSocket transport implementation"
34+
description = "RSocket Local transport implementation"

rsocket-transport-nodejs-tcp/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ kotlin {
2727
}
2828
}
2929
}
30+
31+
description = "RSocket NodeJS TCP client/server transport implementation"

0 commit comments

Comments
 (0)