mirror of
https://github.com/sciwhiz12/Janitor.git
synced 2024-11-14 03:11:27 +00:00
45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
apply from: 'version.gradle'
|
|
|
|
group = "tk.sciwhiz12.janitor"
|
|
version = versionInfo["version"] ?: "unknown"
|
|
println("Version: $version")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation "org.junit.jupiter:junit-jupiter:$junit_ver"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(11)
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'tk.sciwhiz12.janitor.App'
|
|
}
|
|
|
|
jar {
|
|
archivesBaseName = "janitor-bot"
|
|
manifest {
|
|
attributes([
|
|
"Specification-Title" : "Janitor",
|
|
"Specification-Vendor" : "sciwhiz12",
|
|
"Specification-Version" : project.version,
|
|
"Implementation-Title" : "janitor-bot",
|
|
"Implementation-Vendor" : "sciwhiz12",
|
|
"Implementation-Version": project.version,
|
|
"Commit-Hash" : versionInfo["hash"] ?: "0000000000000000000000000000000000000000",
|
|
"Commit-Timestamp" : versionInfo["timestamp"] ?: "1980-01-01T00:00:00+00:00"
|
|
] as LinkedHashMap)
|
|
}
|
|
preserveFileTimestamps = false
|
|
reproducibleFileOrder = true
|
|
}
|