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