2025-01-13 12:56:42 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm") version "2.0.20"
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "org.example"
|
|
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2025-01-20 12:04:42 +00:00
|
|
|
implementation("io.github.serpro69:kotlin-faker:2.0.0-rc.7")
|
2025-01-13 12:56:42 +00:00
|
|
|
testImplementation(kotlin("test"))
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|