File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,10 @@ repositories {
38
38
}
39
39
```
40
40
41
- Add libraries to dependencies:
41
+ Add the library to dependencies:
42
42
``` kotlin
43
43
dependencies {
44
44
implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.0" )
45
- implementation(" org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0" )
46
45
}
47
46
```
48
47
@@ -53,7 +52,6 @@ kotlin {
53
52
commonMain {
54
53
dependencies {
55
54
implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.0" )
56
- implementation(" org.jetbrains.kotlinx:kotlinx-io-bytestring:0.2.0" )
57
55
}
58
56
}
59
57
}
@@ -62,18 +60,13 @@ kotlin {
62
60
63
61
### Maven
64
62
65
- Add libraries to dependencies:
63
+ Add the library to dependencies:
66
64
``` xml
67
65
<dependency >
68
66
<groupId >org.jetbrains.kotlinx</groupId >
69
67
<artifactId >kotlinx-io-core-jvm</artifactId >
70
68
<version >0.2.0</version >
71
69
</dependency >
72
- <dependency >
73
- <groupId >org.jetbrains.kotlinx</groupId >
74
- <artifactId >kotlinx-io-bytestring-jvm</artifactId >
75
- <version >0.2.0</version >
76
- </dependency >
77
70
```
78
71
79
72
## Contributing
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ kotlin {
42
42
sourceSets {
43
43
val commonMain by getting {
44
44
dependencies {
45
- implementation (project(" :kotlinx-io-bytestring" ))
45
+ api (project(" :kotlinx-io-bytestring" ))
46
46
}
47
47
}
48
48
val commonTest by getting {
You can’t perform that action at this time.
0 commit comments