- add gradle properties information in README.md - remove repositories from build.gradle.kts - change to settings.gradle.kts - add dependency resolution management - add plugin management repositories - add catalog in gradle.properties
25 lines
310 B
Kotlin
25 lines
310 B
Kotlin
plugins {
|
|
kotlin("jvm") version "1.9.25"
|
|
}
|
|
|
|
group = "ltd.lulz"
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs.addAll("-Xjsr305=strict")
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|