2020-04-08 05:05:48 +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 {
|
2020-08-18 06:50:11 +00:00
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-04-08 05:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
project.version = "$library_version"
|
|
|
|
project.group = "$library_group"
|
|
|
|
|
|
|
|
apply from: "publish.gradle"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2021-05-29 09:34:14 +00:00
|
|
|
jvm()
|
|
|
|
js(IR) {
|
2020-09-22 16:42:01 +00:00
|
|
|
browser()
|
2020-08-19 07:49:30 +00:00
|
|
|
nodejs()
|
|
|
|
}
|
2020-04-08 05:05:48 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
2020-11-10 19:31:28 +00:00
|
|
|
api project(":tgbotapi.core")
|
2020-04-08 05:05:48 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-09 13:07:31 +00:00
|
|
|
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
}
|
|
|
|
}
|
2020-04-08 05:05:48 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-23 07:15:44 +00:00
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
}
|
|
|
|
}
|