Jonas Tobias Hopusch
8c6d65f147
Since the project now contains a dependency again (commons-cli), I need to be able to generate
jars with those dependencies packaged. (fat jars)
Partially reverts 28a461b8fc
55 lines
1.3 KiB
Text
55 lines
1.3 KiB
Text
import java.io.ByteArrayOutputStream
|
|
import java.io.OutputStream
|
|
|
|
plugins {
|
|
// Apply the application plugin to add support for building a CLI application in Java.
|
|
application
|
|
java
|
|
|
|
id ("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
repositories {
|
|
// Use Maven Central for resolving dependencies.
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(group="commons-cli", name="commons-cli", version="1.5.0")
|
|
}
|
|
|
|
fun versionBanner(): String {
|
|
val os = ByteArrayOutputStream()
|
|
val devNull = OutputStream.nullOutputStream()
|
|
project.exec {
|
|
commandLine = "git describe --tags --always --dirty --abbrev".split(" ")
|
|
standardOutput = os
|
|
errorOutput = devNull
|
|
}
|
|
return String(os.toByteArray()).trim()
|
|
}
|
|
|
|
group = "de.jotoho"
|
|
version = versionBanner()
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest {
|
|
attributes(
|
|
"Implementation-Title" to project.name,
|
|
"Implementation-Version" to project.version,
|
|
"Main-Class" to "de.jotoho.waituntil.Main"
|
|
//"Main-Module" to "de.jotoho.waituntil.main"
|
|
)
|
|
}
|
|
}
|
|
|
|
application {
|
|
// Define the main class for the application.
|
|
mainClass.set("de.jotoho.waituntil.Main")
|
|
//mainModule.set("de.jotoho.waituntil.main")
|
|
}
|