BlueMap/implementations/cli/build.gradle.kts
Lukas Rieger 1454297bbd
Rework gradle-build system (#574)
* 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
2024-09-12 17:45:21 +02:00

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"
)
}