Skip to content

Commit

Permalink
Remove todos from readme (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr3zee authored May 30, 2024
1 parent 93b5b8a commit 6daa20d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ To use the `kotlinx.rpc` Gradle plugins, you need to add the following repositor
```kotlin
pluginManagement {
repositories {
maven(url = "https://maven.pkg.jetbrains.space/public/p/krpc/maven") // todo update repo link
maven(url = "https://maven.pkg.jetbrains.space/public/p/krpc/maven")
gradlePluginPortal()
}
}
Expand All @@ -111,7 +111,7 @@ plugins {
To use `kotlinx.rpc` runtime dependencies, you need to add our Space repository to the list of project repositories:
```kotlin
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/krpc/maven") // todo update repo link
maven("https://maven.pkg.jetbrains.space/public/p/krpc/maven")
mavenCentral() // for other dependencies, e.g. Ktor
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/kotlinx-rpc/topics/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ from which they will be consumed in your `build.gradle.kts`:
```kotlin
repositories {
// for kotlinx.rpc dependencies
maven(url = "https://maven.pkg.jetbrains.space/public/p/krpc/maven") // todo change repo link
maven(url = "https://maven.pkg.jetbrains.space/public/p/krpc/maven")
// for other dependencies, like Ktor
mavenCentral()
}
Expand Down Expand Up @@ -153,7 +153,7 @@ to be consumed from in your `settings.gradle.kts`:
pluginManagement {
repositories {
// kotlinx.rpc plugins will be downloaded from here
maven(url = "https://maven.pkg.jetbrains.space/public/p/krpc/maven") // todo update repo link
maven(url = "https://maven.pkg.jetbrains.space/public/p/krpc/maven")
// other plugins, like Kotlin, will be downloaded from here
gradlePluginPortal()
}
Expand Down

0 comments on commit 6daa20d

Please sign in to comment.