mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-bot_template.git
synced 2024-11-14 12:23:52 +00:00
32 lines
669 B
Groovy
32 lines
669 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
|
||
|
id 'application'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
|
||
|
implementation "dev.inmo:tgbotapi:$tgbotapi_version"
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClassName = 'telegram_bot.AppKt'
|
||
|
}
|