1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-02-16 19:52:01 +00:00

57 lines
1.1 KiB
Groovy
Raw Normal View History

2021-01-06 23:06:48 +06: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 16:26:18 +06:00
project.description = "DEPRECATED, use tgbotapi.behaviour_builder"
2021-01-06 23:06:48 +06:00
2022-03-22 16:26:18 +06:00
apply from: "../publish.gradle"
2021-01-06 23:06:48 +06:00
repositories {
mavenLocal()
mavenCentral()
}
kotlin {
2021-11-14 19:42:03 +06:00
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
2021-05-29 15:34:14 +06:00
js(IR) {
2021-01-06 23:06:48 +06:00
browser()
nodejs()
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2021-10-18 15:20:25 +06:00
api project(":tgbotapi.behaviour_builder")
2021-01-06 23:06:48 +06:00
}
}
}
}
2021-09-23 13:15:44 +06:00
java {
2021-11-14 19:42:03 +06:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2021-09-23 13:15:44 +06:00
}
2021-10-18 15:20:25 +06:00