2021-06-30 07:12:15 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-10-18 11:14:40 +00:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2021-06-30 07:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'application'
|
|
|
|
|
2021-06-30 07:50:08 +00:00
|
|
|
mainClassName="SimpleFSMBotKt"
|
2021-06-30 07:12:15 +00:00
|
|
|
|
2021-10-18 11:14:40 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
2021-06-30 07:12:15 +00:00
|
|
|
|
|
|
|
dependencies {
|
2021-08-25 09:58:27 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2021-06-30 07:12:15 +00:00
|
|
|
|
|
|
|
implementation "dev.inmo:tgbotapi:$telegram_bot_api_version"
|
|
|
|
}
|