19 lines
323 B
Plaintext
19 lines
323 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.8.21"
|
|
}
|
|
|
|
group = "no.iktdev.streamit.content"
|
|
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()
|
|
} |