kotlin-matule/build.gradle.kts

22 lines
324 B
Plaintext
Raw Permalink Normal View History

2025-01-15 12:58:40 +00:00
plugins {
kotlin("jvm") version "2.0.21"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("io.github.serpro69:kotlin-faker:2.0.0-rc.7")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}