ref: 9bde6ffaa4dac48b5500b3bdf529d81c4ba5c08d
fruchtfleisch/build.gradle.kts
// SPDX-FileCopyrightText: Adam Evyčędo // // SPDX-License-Identifier: GPL-3.0-or-later plugins { id("java-library") kotlin("jvm") } dependencies { testImplementation("org.junit.jupiter:junit-jupiter:5.11.2") testImplementation("org.junit.jupiter:junit-jupiter:5.11.2") //implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.10") } java { sourceCompatibility = JavaVersion.VERSION_21 targetCompatibility = JavaVersion.VERSION_21 } tasks.withType{ useJUnitPlatform() }