summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLeonid Startsev <sandwwraith@users.noreply.github.com>2021-02-04 17:03:31 +0300
committerGitHub <noreply@github.com>2021-02-04 17:03:31 +0300
commit6a8dc862f28631727964ba31fdb4a9a4f68a81ae (patch)
treeb8332ac4e6fe8d448d57fd34c0d3e4cec1a5dc3d /docs
parent94b09ebb99f2831e011dea5ca226f863a27709ef (diff)
downloadkotlinx.serialization-6a8dc862f28631727964ba31fdb4a9a4f68a81ae.tar.gz
Remove JCenter() from repositories where possible (#1322)
Diffstat (limited to 'docs')
-rw-r--r--docs/building.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/building.md b/docs/building.md
index ab4ea907..2702eff5 100644
--- a/docs/building.md
+++ b/docs/building.md
@@ -10,12 +10,11 @@ After that, you can include this library in arbitrary projects like usual gradle
```gradle
repositories {
- jcenter()
mavenLocal()
}
dependencies {
- compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime"
+ compile "org.jetbrains.kotlinx:kotlinx-serialization-core:$serialization_version"
}
```
@@ -32,4 +31,4 @@ To use snapshot version of compiler (if you have built it from sources), use fla
Compiler plugin for Gradle/Maven and IntelliJ plugin, starting from Kotlin 1.3, are embedded into the Kotlin compiler.
-Sources and steps to build it are located [here](https://github.com/JetBrains/kotlin/blob/master/plugins/kotlin-serialization/kotlin-serialization-compiler/). In general, you'll just need to run `./gradlew dist install` to get `1.3-SNAPSHOT` versions of Kotlin compiler, stdlib and serialization plugins in the Maven local repository.
+Sources and steps to build it are located [here](https://github.com/JetBrains/kotlin/blob/master/plugins/kotlin-serialization/kotlin-serialization-compiler/). In general, you'll just need to run `./gradlew dist install` to get `1.x.255` versions of Kotlin compiler, stdlib and serialization plugins in the Maven local repository.