waituntil/build.gradle.kts

36 lines
812 B
Plaintext
Raw Normal View History

plugins {
// Apply the application plugin to add support for building a CLI application in Java.
application
// For generating fat jars
id("com.github.johnrengelman.shadow") version "latest.release"
}
group = "de.jotoho"
2021-09-19 20:43:17 +02:00
version = "0.1.1"
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
java {
2021-12-01 12:30:21 +01:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.jar {
manifest {
attributes(
2021-12-01 14:36:07 +01:00
"Implementation-Title" to "de.jotoho.waituntil",
"Implementation-Version" to "${project.version}",
2021-12-01 14:36:07 +01:00
"Main-Class" to "de.jotoho.waituntil.Main"
)
}
}
application {
// Define the main class for the application.
2021-12-01 14:36:07 +01:00
mainClass.set("de.jotoho.waituntil.Main")
}