mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-02 21:20:55 +00:00
30 lines
500 B
Plaintext
30 lines
500 B
Plaintext
plugins {
|
|
id("gay.pizza.foundation.concrete-base")
|
|
id("com.gradleup.shadow")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common-heimdall"))
|
|
|
|
implementation(libs.clikt)
|
|
implementation(libs.slf4j.simple)
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest.attributes(
|
|
"Main-Class" to "gay.pizza.foundation.heimdall.tool.MainKt"
|
|
)
|
|
}
|
|
|
|
tasks.assemble {
|
|
dependsOn("shadowJar")
|
|
}
|
|
|
|
concreteItem {
|
|
type.set("tool")
|
|
|
|
fileInclusion {
|
|
tasks.getByName("shadowJar").outputs.files.associateWith { "tool-jar" }
|
|
}
|
|
}
|