-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
olme04
authored
Apr 14, 2022
1 parent
0f5cc2c
commit 947d5ee
Showing
12 changed files
with
38 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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("[email protected]") | ||
developers { | ||
developer { | ||
id.set("whyoleg") | ||
name.set("Oleg Yukhnevich") | ||
email.set("[email protected]") | ||
} | ||
developer { | ||
id.set("OlegDokuka") | ||
name.set("Oleh Dokuka") | ||
email.set("[email protected]") | ||
} | ||
} | ||
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") | ||
} | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ kotlin { | |
configureNative() | ||
} | ||
|
||
description = "Ktor RSocket integration" | ||
description = "RSocket ktor integration" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,5 @@ kotlin { | |
} | ||
} | ||
} | ||
|
||
description = "RSocket NodeJS TCP client/server transport implementation" |