/* * This file was generated by the Gradle 'init' task. * * This generated file contains a sample Kotlin application project to get you started. * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle * User Manual available at https://docs.gradle.org/7.2/userguide/building_java_projects.html */ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin. kotlin("jvm") version "latest.release" // Apply the application plugin to add support for building a CLI application in Java. application } group = "de.jotoho" version = "0.1.0" repositories { // Use Maven Central for resolving dependencies. mavenCentral() } dependencies { // Align versions of all Kotlin components implementation(platform(kotlin("bom", "latest.release"))) // Use the Kotlin standard library. implementation(kotlin("stdlib", "latest.release")) // Use the Kotlin test library. testImplementation(kotlin("test", "latest.release")) // Use the Kotlin JUnit integration. testImplementation(kotlin("test-junit", "latest.release")) } java { sourceCompatibility = JavaVersion.VERSION_16 targetCompatibility = JavaVersion.VERSION_16 } tasks.test { useJUnitPlatform() } tasks.withType() { kotlinOptions.jvmTarget = "16" } application { // Define the main class for the application. mainClass.set("de.jotoho.waituntil.StartKt") }