mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-27 04:19:08 +00:00
9e85687575
* in order to make an omelet, you have to break a few eggs. aka absolutely decimate the gradle project * far more sane gradle, no publishing yet tho * attempt maven deploy * fix publish url and use snapshot repo * fix secret names * release, and properly set version * attempt to set group correctly * more gradle fixups (cherry picked from commit 381d89497a8c63dc3c4d89b60a6bd98947df1477)
22 lines
379 B
Plaintext
22 lines
379 B
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
plugins {
|
|
application
|
|
alias(libs.plugins.shadow)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(rootProject)
|
|
|
|
runtimeOnly(libs.bundles.logback)
|
|
}
|
|
|
|
tasks {
|
|
application {
|
|
mainClass.set("net.minestom.demo.Main")
|
|
}
|
|
|
|
withType<ShadowJar> {
|
|
archiveFileName.set("minestom-demo.jar")
|
|
}
|
|
} |