File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ open classes should be avoided.
1818implementation(" de.brudaswen.kotlinx.serialization:kotlinx-serialization-csv:1.0.0" )
1919
2020// Kotlin Serialization is added automatically, but can be added to force a specific version
21- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-runtime :1.0.0-RC " )
21+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-core :1.0.0-RC2 " )
2222```
2323
2424## Usage
@@ -100,7 +100,7 @@ CSV serialization and parsing options can be changed by providing a custom `CsvC
100100
101101| Dependency | Versions |
102102| --- | --- |
103- | * Kotlin Serialization* | 1.0.0-RC |
103+ | * Kotlin Serialization* | 1.0.0-RC2 |
104104
105105## License
106106
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55 id(" io.codearte.nexus-staging" ) version " 0.22.0"
66}
77
8- val serializationVersion = " 1.0.0-RC "
8+ val serializationVersion = " 1.0.0-RC2 "
99
1010allprojects {
1111 group = " de.brudaswen.kotlinx.serialization"
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ dependencies {
2727
2828java {
2929 withSourcesJar()
30+
31+ sourceCompatibility = JavaVersion .VERSION_1_8
32+ targetCompatibility = JavaVersion .VERSION_1_8
3033}
3134
3235tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
You can’t perform that action at this time.
0 commit comments