ref: 46c7a266c202f03ccd8708d959b080cf2db6a82d
fruchtfleisch/build.gradle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
// SPDX-FileCopyrightText: Adam Evyčędo // // SPDX-License-Identifier: GPL-3.0-or-later plugins { id 'java-library' id 'org.jetbrains.kotlin.jvm' } dependencies { testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1' testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1' //implementation 'org.jetbrains.kotlin:kotlin-reflect:1.8.10' } java { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } test { useJUnitPlatform() } |