1
0
Fork 0
mirror of https://github.com/xHyroM/lighteco.git synced 2024-09-20 05:13:18 +02:00
lighteco/velocity/build.gradle.kts
2023-07-30 16:00:37 +02:00

19 lines
No EOL
287 B
Text

plugins {
id("java")
}
group = "dev.xhyrom"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}