px32-bot/px32-bot-func/build.gradle.kts

20 lines
335 B
Text
Raw Normal View History

2024-09-19 07:27:42 +00:00
plugins {
id("java")
}
group = "net.projecttl"
version = "0.1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
compileOnly(project(":px32-bot-api"))
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}