mirror of
https://github.com/devproje/px32-bot.git
synced 2025-01-19 10:20:05 +09:00
15 lines
261 B
Text
15 lines
261 B
Text
|
plugins {
|
||
|
id("java")
|
||
|
}
|
||
|
|
||
|
group = rootProject.group
|
||
|
version = rootProject.version
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|