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

47 lines
883 B
Groovy
Raw Normal View History

2020-04-08 11:05:48 +06: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 {
2020-08-18 12:50:11 +06:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-04-08 11:05:48 +06:00
}
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-05-29 15:34:14 +06:00
jvm()
js(IR) {
browser()
2020-08-19 13:49:30 +06:00
nodejs()
}
2020-04-08 11:05:48 +06:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2020-11-11 01:30:31 +06:00
api project(":tgbotapi.core")
2020-04-08 11:05:48 +06:00
}
}
}
}