ref: 2ad54d9c3bb12b2e0f3760a760ebf7f3bdfcf832
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.0") testImplementation("org.junit.jupiter:junit-jupiter:5.11.0") //implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.10") } java { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } tasks.withType{ useJUnitPlatform() }