foundation/tool-gjallarhorn/build.gradle.kts

22 lines
407 B
Plaintext
Raw Normal View History

2023-01-29 03:35:10 +00:00
plugins {
id("gay.pizza.foundation.concrete-library")
id("com.github.johnrengelman.shadow")
}
dependencies {
api(project(":common-heimdall"))
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")
}