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