Skip to content

Commit 1773f85

Browse files
authored
Fixed dependencies in examples from README.md
Fixes #165
1 parent d0d2a5b commit 1773f85

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ repositories {
3838
}
3939
```
4040

41-
Add the library to dependencies:
41+
Add libraries to dependencies:
4242
```kotlin
4343
dependencies {
4444
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.2.0")
45+
implementation("org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0")
4546
}
4647
```
4748

@@ -52,6 +53,7 @@ kotlin {
5253
commonMain {
5354
dependencies {
5455
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.2.0")
56+
implementation("org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0")
5557
}
5658
}
5759
}
@@ -60,11 +62,16 @@ kotlin {
6062

6163
### Maven
6264

63-
Add the library to dependencies:
65+
Add libraries to dependencies:
6466
```xml
6567
<dependency>
6668
<groupId>org.jetbrains.kotlinx</groupId>
67-
<artifactId>kotlinx-io-core</artifactId>
69+
<artifactId>kotlinx-io-core-jvm</artifactId>
70+
<version>0.2.0</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.jetbrains.kotlinx</groupId>
74+
<artifactId>kotlinx-io-bytestring-jvm</artifactId>
6875
<version>0.2.0</version>
6976
</dependency>
7077
```

0 commit comments

Comments
 (0)