2020-08-20 05:55:39 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
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"
|
2022-03-22 10:26:18 +00:00
|
|
|
project.description = "Core part of tgbotapi with all (and only) required functionality for working with Telegram Bot API"
|
2020-08-20 05:55:39 +00:00
|
|
|
|
2022-03-22 10:26:18 +00:00
|
|
|
apply from: "../publish.gradle"
|
2020-08-20 05:55:39 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2021-11-14 13:42:03 +00:00
|
|
|
jvm {
|
|
|
|
compilations.main {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-29 09:34:14 +00:00
|
|
|
js(IR) {
|
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"
|
2022-04-21 11:54:15 +00:00
|
|
|
api "dev.inmo:micro_utils.ktor.common:$micro_utils_version"
|
2021-08-05 17:36:01 +00:00
|
|
|
api "dev.inmo:micro_utils.language_codes:$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')
|
2022-04-18 08:30:38 +00:00
|
|
|
implementation project(":tgbotapi.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"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-23 07:15:44 +00:00
|
|
|
|
|
|
|
java {
|
2021-11-14 13:42:03 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2021-09-23 07:15:44 +00:00
|
|
|
}
|