2020-08-20 05:55:39 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
}
|
|
|
|
|
|
|
|
project.version = "$library_version"
|
|
|
|
project.group = "$library_group"
|
|
|
|
|
|
|
|
apply from: "publish.gradle"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2021-02-05 18:52:39 +00:00
|
|
|
jvm {
|
|
|
|
compilations.main.kotlinOptions.useIR = true
|
|
|
|
}
|
2020-08-20 05:55:39 +00:00
|
|
|
js(BOTH) {
|
2020-09-22 16:42:01 +00:00
|
|
|
browser()
|
2020-08-20 05:55:39 +00:00
|
|
|
nodejs()
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
|
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
|
2020-09-22 05:33:47 +00:00
|
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_runtime_version"
|
2020-08-20 05:55:39 +00:00
|
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-properties:$kotlin_serialisation_runtime_version"
|
|
|
|
|
|
|
|
api "com.soywiz.korlibs.klock:klock:$klock_version"
|
|
|
|
api "com.benasher44:uuid:$uuid_version"
|
|
|
|
|
2021-01-23 06:21:57 +00:00
|
|
|
api "dev.inmo:micro_utils.crypto:$micro_utils_version"
|
2020-11-07 07:42:10 +00:00
|
|
|
api "dev.inmo:micro_utils.coroutines:$micro_utils_version"
|
2021-01-14 15:27:58 +00:00
|
|
|
api "dev.inmo:micro_utils.serialization.base64:$micro_utils_version"
|
2021-01-22 15:53:37 +00:00
|
|
|
api "dev.inmo:micro_utils.serialization.encapsulator:$micro_utils_version"
|
2021-04-15 08:34:05 +00:00
|
|
|
api "dev.inmo:micro_utils.serialization.typed_serializer:$micro_utils_version"
|
2020-11-07 07:42:10 +00:00
|
|
|
|
2020-08-20 05:55:39 +00:00
|
|
|
api "io.ktor:ktor-client-core:$ktor_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
2021-02-09 13:07:31 +00:00
|
|
|
implementation project(":tgbotapi.extensions.utils")
|
2020-08-20 05:55:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
api "io.ktor:ktor-server:$ktor_version"
|
|
|
|
api "io.ktor:ktor-server-host-common:$ktor_version"
|
|
|
|
|
|
|
|
api "io.ktor:ktor-client-cio:$ktor_version"
|
|
|
|
|
|
|
|
api "javax.activation:activation:$javax_activation_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
targets.all {
|
|
|
|
compilations.all {
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs += ["-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi", "-Xopt-in=kotlin.RequiresOptIn"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|