holgerbrandl
03/25/2019, 5:55 PMnapperley
03/25/2019, 7:10 PMholgerbrandl
03/25/2019, 7:11 PMjcenter()
maven { url "<https://dl.bintray.com/kotlin/ktor>" }
maven { url "<https://dl.bintray.com/kotlin/kotlinx>" }
which seems to have fixed it.ribesg
03/26/2019, 9:22 AMkotlinx.serialization
is experimental and as such, is not in a main maven repository. It’s usual for all experimental kotlin libs like this.jvassbo
03/26/2019, 10:16 AMholgerbrandl
03/26/2019, 10:17 AMjvassbo
03/26/2019, 10:18 AMholgerbrandl
03/26/2019, 10:19 AMjvassbo
03/26/2019, 10:22 AM<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-jackson</artifactId>
<version>${ktor.version}</version>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-runtime</artifactId>
</exclusion>
<exclusion>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-runtime-common</artifactId>
</exclusion>
</exclusions>
</dependency>
holgerbrandl
03/26/2019, 10:22 AMjvassbo
03/26/2019, 10:22 AM