mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-24 11:38:37 +01:00
1454297bbd
* Rework gradle-build setup * Fix versioning * Fix github build * Configure publishing * Push BlueMapAPI * Reorganize project naming * Update neoforge-gradle * Add gradle-stracktrace to github action * Remove clean gradle target to hopefully no longer upset neogradle for some reason * Update gradle and add stacktrace to github action again * Update neogradle * Switch to neoforges ModDevGradle
15 lines
230 B
Plaintext
15 lines
230 B
Plaintext
plugins {
|
|
bluemap.implementation
|
|
}
|
|
|
|
dependencies {
|
|
api ( project( ":common" ) )
|
|
api ( libs.commons.cli )
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest.attributes (
|
|
"Main-Class" to "de.bluecolored.bluemap.cli.BlueMapCLI"
|
|
)
|
|
}
|