Skip to content

Commit

Permalink
fix projects descriptions (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
olme04 committed Apr 14, 2022
1 parent 0f5cc2c commit 947d5ee
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 35 deletions.
50 changes: 26 additions & 24 deletions buildSrc/src/main/kotlin/rsocket.publication.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,35 +34,37 @@ publishing {
publications.withType<MavenPublication> {
artifact(javadocJar.get())

pom {
name.set(project.name)
description.set(project.description)
url.set("http://rsocket.io")
afterEvaluate {
pom {
name.set(project.name)
description.set(project.description)
url.set("http://rsocket.io")

licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
distribution.set("repo")
licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
distribution.set("repo")
}
}
}
developers {
developer {
id.set("whyoleg")
name.set("Oleg Yukhnevich")
email.set("whyoleg@gmail.com")
developers {
developer {
id.set("whyoleg")
name.set("Oleg Yukhnevich")
email.set("whyoleg@gmail.com")
}
developer {
id.set("OlegDokuka")
name.set("Oleh Dokuka")
email.set("oleh.dokuka@icloud.com")
}
}
developer {
id.set("OlegDokuka")
name.set("Oleh Dokuka")
email.set("oleh.dokuka@icloud.com")
scm {
connection.set("https://github.com/rsocket/rsocket-kotlin.git")
developerConnection.set("https://github.com/rsocket/rsocket-kotlin.git")
url.set("https://github.com/rsocket/rsocket-kotlin")
}
}
scm {
connection.set("https://github.com/rsocket/rsocket-kotlin.git")
developerConnection.set("https://github.com/rsocket/rsocket-kotlin.git")
url.set("https://github.com/rsocket/rsocket-kotlin")
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion rsocket-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ kotlin {
configureNative()
}

description = "Core functionality for the RSocket library"
description = "RSocket core functionality"
2 changes: 1 addition & 1 deletion rsocket-ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ kotlin {
configureNative()
}

description = "Ktor RSocket integration"
description = "RSocket ktor integration"
2 changes: 1 addition & 1 deletion rsocket-ktor/rsocket-ktor-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ kotlin {
configureNative()
}

description = "Ktor Client RSocket plugin"
description = "RSocket ktor client plugin"
2 changes: 1 addition & 1 deletion rsocket-ktor/rsocket-ktor-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ kotlin {
configureNative(NativeTargets.Nix)
}

description = "Ktor Server RSocket Plugin"
description = "RSocket ktor server plugin"
2 changes: 1 addition & 1 deletion rsocket-transport-ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ kotlin {
configureNative()
}

description = "Ktor RSocket transport implementations (TCP, Websocket)"
description = "RSocket ktor transport utilities"
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ kotlin {
configureNative(NativeTargets.Nix)
}

description = "Ktor TCP RSocket transport implementation"
description = "RSocket ktor TCP client/server transport implementation"
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ kotlin {
configureNative()
}

description = "Ktor WebSocket Client RSocket transport implementation"
description = "RSocket ktor WebSocket client transport implementation"

evaluationDependsOn(":rsocket-transport-tests")
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,4 @@ kotlin {
}
configureNative(NativeTargets.Nix)
}

description = "Ktor WebSocket Server RSocket transport implementation"
description = "RSocket ktor WebSocket server transport implementation"
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ kotlin {
configureNative()
}

description = "Ktor WebSocket RSocket transport implementation"
description = "RSocket ktor WebSocket transport utilities"
2 changes: 1 addition & 1 deletion rsocket-transport-local/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ kotlin {
configureNative()
}

description = "Local RSocket transport implementation"
description = "RSocket Local transport implementation"
2 changes: 2 additions & 0 deletions rsocket-transport-nodejs-tcp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ kotlin {
}
}
}

description = "RSocket NodeJS TCP client/server transport implementation"

0 comments on commit 947d5ee

Please sign in to comment.