ref: 0ae2a8256ae07d540e8e24148d64e56481e0d7de
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() } |