From 6daa20de2080598f02d0799a5c49f4e4e39cc96c Mon Sep 17 00:00:00 2001 From: Alexander Sysoev Date: Thu, 30 May 2024 12:37:16 +0200 Subject: [PATCH] Remove todos from readme (#85) --- README.md | 4 ++-- docs/pages/kotlinx-rpc/topics/getting_started.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb4cbb2a..1689d5e2 100644 --- a/README.md +++ b/README.md @@ -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() } } @@ -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 } ``` diff --git a/docs/pages/kotlinx-rpc/topics/getting_started.md b/docs/pages/kotlinx-rpc/topics/getting_started.md index 9e314477..8abf8fa7 100644 --- a/docs/pages/kotlinx-rpc/topics/getting_started.md +++ b/docs/pages/kotlinx-rpc/topics/getting_started.md @@ -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() } @@ -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() }