buildscript { repositories { mavenLocal() jcenter() mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version" } } plugins { id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version" id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version" } project.version = "$core_version" project.group = "com.insanusmokrassar" apply from: "publish.gradle" repositories { mavenLocal() jcenter() mavenCentral() maven { url "https://kotlin.bintray.com/kotlinx" } } kotlin { jvm() js() sourceSets { commonMain { dependencies { implementation kotlin('stdlib') if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") { api "com.insanusmokrassar:postssystem.ktor.common:$core_version" } else { api projectByName("postssystem.ktor.common") } api "io.ktor:ktor-client-core:$ktor_version" api "io.ktor:ktor-client-websockets:$ktor_version" } } commonTest { dependencies { implementation kotlin('test-common') implementation kotlin('test-annotations-common') } } jvmMain { dependencies { implementation kotlin('stdlib-jdk8') api "io.ktor:ktor-client:$ktor_version" api "io.ktor:ktor-client-websockets-jvm:$ktor_version" api "io.ktor:ktor-client-okhttp:$ktor_version" } } jvmTest { dependencies { implementation kotlin('test-junit') } } jsMain { dependencies { implementation kotlin('stdlib-js') api "io.ktor:ktor-client-js:$ktor_version" api "io.ktor:ktor-client-websockets-js:$ktor_version" } } jsTest { dependencies { implementation kotlin('test-js') implementation kotlin('test-junit') } } } }