plugins { kotlin("multiplatform") version "1.3.72" } /* group 'kroppeb.json-codec-format' version '0.1-SNAPSHOT' */ repositories { mavenCentral() maven { setUrl("https://dl.bintray.com/hotkeytlt/maven") } } dependencies { } kotlin { /* Targets configuration omitted. * To find out how to configure the targets, please follow the link: * https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#setting-up-targets */ jvm() sourceSets { val commonMain by getting { dependencies { implementation(kotlin("stdlib-common")) implementation("com.github.h0tk3y.betterParse:better-parse:0.4.0") } } val commonTest by getting { dependencies { implementation(kotlin("test-common")) implementation(kotlin("test-annotations-common")) } } val jvmMain by getting{ } val jvmTest by getting { dependencies { implementation(kotlin("test-junit")) } } } }