mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-03 05:30:55 +00:00
22 lines
408 B
Plaintext
22 lines
408 B
Plaintext
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.0")
|
|
implementation("org.slf4j:slf4j-simple:1.7.36")
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest.attributes(
|
|
"Main-Class" to "gay.pizza.foundation.heimdall.tool.MainKt"
|
|
)
|
|
}
|
|
|
|
tasks.assemble {
|
|
dependsOn("shadowJar")
|
|
}
|