MyBot/build.gradle.kts

19 lines
286 B
Plaintext
Raw Normal View History

2024-07-30 19:20:43 +08:00
plugins {
id("java")
}
group = "cn.wzpmc"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}