Kvinchik/build.gradle.kts

27 lines
482 B
Text
Raw Normal View History

2024-06-16 22:30:39 +03:00
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"
}