2020-06-02 13:28:10 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2022-04-29 14:57:16 +00:00
|
|
|
mavenCentral()
|
2020-06-02 13:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 14:20:11 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
}
|
|
|
|
|
2020-06-02 13:28:10 +00:00
|
|
|
apply plugin: 'application'
|
|
|
|
|
2020-06-02 14:24:41 +00:00
|
|
|
mainClassName="RandomFileSenderBotKt"
|
2020-06-02 13:28:10 +00:00
|
|
|
|
2023-04-19 14:20:11 +00:00
|
|
|
kotlin {
|
|
|
|
jvm()
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
|
|
|
|
|
|
|
api "dev.inmo:tgbotapi:$telegram_bot_api_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-02 13:28:10 +00:00
|
|
|
}
|
2023-04-19 14:20:11 +00:00
|
|
|
|
2023-10-25 09:33:05 +00:00
|
|
|
apply from: "$nativePartTemplate"
|
|
|
|
|