2023-01-28 19:35:10 -08:00
|
|
|
plugins {
|
2023-02-07 04:52:54 -05:00
|
|
|
id("gay.pizza.foundation.concrete-base")
|
2023-01-28 19:35:10 -08:00
|
|
|
id("com.github.johnrengelman.shadow")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-07 04:52:54 -05:00
|
|
|
implementation(project(":common-heimdall"))
|
2023-01-28 19:35:10 -08:00
|
|
|
|
2023-02-05 21:49:53 -08:00
|
|
|
implementation("com.github.ajalt.clikt:clikt:3.5.1")
|
|
|
|
implementation("org.slf4j:slf4j-simple:2.0.6")
|
2023-01-28 19:35:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.jar {
|
|
|
|
manifest.attributes(
|
2023-01-28 22:09:07 -08:00
|
|
|
"Main-Class" to "gay.pizza.foundation.heimdall.tool.MainKt"
|
2023-01-28 19:35:10 -08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.assemble {
|
|
|
|
dependsOn("shadowJar")
|
|
|
|
}
|