mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2024-11-04 15:33:52 +00:00
25 lines
435 B
Groovy
25 lines
435 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'application'
|
||
|
|
||
|
mainClassName="ResenderBotJvmKt"
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||
|
|
||
|
implementation project(":ResenderBot:ResenderBotLib")
|
||
|
}
|