Initial commit
Build main / build (21) (push) Failing after 13m38s

This commit is contained in:
Laura
2026-08-09 15:17:12 +02:00
commit 6bf2a93935
285 changed files with 32332 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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))
}
}