27 lines
482 B
Text
27 lines
482 B
Text
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||
|
|
||
|
plugins {
|
||
|
kotlin("jvm") version "1.9.23"
|
||
|
}
|
||
|
|
||
|
group = "me.theentropyshard"
|
||
|
version = "0.0.1"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("org.telegram:telegrambots-longpolling:7.4.2")
|
||
|
implementation("org.telegram:telegrambots-client:7.4.2")
|
||
|
|
||
|
testImplementation(kotlin("test"))
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
tasks.withType<KotlinCompile> {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|