21 lines
379 B
Kotlin
21 lines
379 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "ch.polgrabia.utils"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.slf4j:slf4j-api:2.0.7")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
|
|
}
|
|
|
|
tasks.getByName<Test>("test") {
|
|
useJUnitPlatform()
|
|
}
|