From 16c66782c676b1101353c911edfdbe1645854f9e Mon Sep 17 00:00:00 2001 From: NikkyAI Date: Sun, 18 Nov 2018 00:05:21 +0100 Subject: [PATCH] forgot to shadow kotlinx-serialization-runtime --- core/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/build.gradle b/core/build.gradle index 82a99d0..ac90354 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -31,7 +31,9 @@ dependencies { shadow(group: 'com.github.kittinunf.result', name: 'result', version: resultVersion) { transitive = false } compile(group: "org.jetbrains.kotlinx", name: "kotlinx-coroutines-core", version: "1.0.1") + compile(group: "org.jetbrains.kotlinx", name: "kotlinx-serialization-runtime", version: "0.9.0") + shadow(group: "org.jetbrains.kotlinx", name: "kotlinx-serialization-runtime", version: "0.9.0") { transitive = false } compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: kotlinVersion } @@ -47,6 +49,7 @@ shadowJar { relocate 'blue.endless', 'matterlink.repack.blue.endless' relocate 'com.github', 'matterlink.repack.com.github' + relocate 'kotlinx', 'matterlink.repack.kotlinx' configurations = [project.configurations.shadow] }