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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'application'
|
|
|
|
|
2020-06-02 14:24:41 +00:00
|
|
|
mainClassName="RandomFileSenderBotKt"
|
2020-06-02 13:28:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2021-08-25 09:58:27 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2020-06-02 13:28:10 +00:00
|
|
|
|
2020-10-04 13:11:48 +00:00
|
|
|
implementation "dev.inmo:tgbotapi:$telegram_bot_api_version"
|
2020-06-02 13:28:10 +00:00
|
|
|
}
|