2021-09-02 17:04:56 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2021-09-19 19:33:39 +02:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
2021-09-02 17:04:56 +02:00
|
|
|
plugins {
|
|
|
|
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
|
2021-09-19 19:42:56 +02:00
|
|
|
id("org.jetbrains.kotlin.jvm") version "latest.release"
|
2021-09-02 17:04:56 +02:00
|
|
|
|
|
|
|
// Apply the application plugin to add support for building a CLI application in Java.
|
|
|
|
application
|
|
|
|
}
|
|
|
|
|
2021-09-19 19:23:45 +02:00
|
|
|
group = "de.jotoho"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
2021-09-02 17:04:56 +02:00
|
|
|
repositories {
|
|
|
|
// Use Maven Central for resolving dependencies.
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// Align versions of all Kotlin components
|
2021-09-19 19:42:56 +02:00
|
|
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom:latest.release"))
|
2021-09-02 17:04:56 +02:00
|
|
|
|
2021-09-19 19:33:39 +02:00
|
|
|
// Use the Kotlin standard library.
|
2021-09-19 19:42:56 +02:00
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:latest.release")
|
2021-09-02 17:04:56 +02:00
|
|
|
|
|
|
|
// Use the Kotlin test library.
|
2021-09-19 19:42:56 +02:00
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test:latest.release")
|
2021-09-02 17:04:56 +02:00
|
|
|
|
|
|
|
// Use the Kotlin JUnit integration.
|
2021-09-19 19:42:56 +02:00
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:latest.release")
|
2021-09-02 17:04:56 +02:00
|
|
|
}
|
|
|
|
|
2021-09-05 21:12:28 +02:00
|
|
|
java {
|
2021-09-19 19:25:59 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2021-09-05 21:12:28 +02:00
|
|
|
}
|
|
|
|
|
2021-09-19 19:33:39 +02:00
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<KotlinCompile>() {
|
2021-09-19 19:25:59 +02:00
|
|
|
kotlinOptions.jvmTarget = "17"
|
2021-09-05 21:12:28 +02:00
|
|
|
}
|
|
|
|
|
2021-09-02 17:04:56 +02:00
|
|
|
application {
|
|
|
|
// Define the main class for the application.
|
|
|
|
mainClass.set("de.jotoho.waituntil.StartKt")
|
|
|
|
}
|