You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
446 B
Kotlin
33 lines
446 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.0.0"
|
|
}
|
|
|
|
group = "fr.celticinfo"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs("src/main")
|
|
}
|
|
test {
|
|
java.srcDirs("src/test")
|
|
}
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events("passed", "skipped", "failed")
|
|
}
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |