Files
BuildSystem/buildSrc/build.gradle.kts
T
Laura 6bf2a93935
Build main / build (21) (push) Failing after 13m38s
Initial commit
2026-08-09 15:17:12 +02:00

27 lines
419 B
Kotlin

import java.util.*
plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
gradlePluginPortal()
}
val properties = Properties().also { props ->
project.projectDir.resolveSibling("gradle.properties").bufferedReader().use {
props.load(it)
}
}
dependencies {
implementation(gradleApi())
}
kotlin {
jvmToolchain {
this.languageVersion.set(JavaLanguageVersion.of(21))
}
}