26 lines
531 B
Plaintext
26 lines
531 B
Plaintext
group = "dev.fyloz"
|
|
version = "1.0"
|
|
|
|
plugins {
|
|
id("org.jetbrains.kotlin.jvm") version "1.6.10"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
maven {
|
|
url = uri("https://archiva.fyloz.dev/repository/internal")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.10")
|
|
|
|
testImplementation("io.kotest:kotest-runner-junit5:5.1.0")
|
|
testImplementation("io.kotest:kotest-assertions-core:5.1.0")
|
|
testImplementation("io.mockk:mockk:1.12.2")
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
} |