2020-02-25 07:27:37 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2022-04-29 14:57:16 +00:00
|
|
|
mavenCentral()
|
2020-02-25 07:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'application'
|
|
|
|
|
2020-11-02 16:44:15 +00:00
|
|
|
mainClassName="ForwardInfoSenderBotKt"
|
2020-02-25 07:27:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2021-08-25 09:58:27 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2020-02-25 07:27:37 +00:00
|
|
|
|
2020-10-04 13:11:48 +00:00
|
|
|
implementation "dev.inmo:tgbotapi:$telegram_bot_api_version"
|
2020-02-25 07:27:37 +00:00
|
|
|
}
|