mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 10:35:16 +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
26 lines
696 B
Plaintext
26 lines
696 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
fun plugin(dependency: Provider<PluginDependency>) = dependency.map {
|
|
"${it.pluginId}:${it.pluginId}.gradle.plugin:${it.version}"
|
|
}
|
|
|
|
implementation ( plugin( libs.plugins.spotless ) )
|
|
implementation ( plugin( libs.plugins.shadow ) )
|
|
implementation ( plugin( libs.plugins.minotaur ) )
|
|
implementation ( plugin( libs.plugins.cursegradle ) )
|
|
implementation ( plugin( libs.plugins.hangar ) )
|
|
implementation ( plugin( libs.plugins.sponge.ore ) )
|
|
|
|
// explicitly set guava version to resolve a build-dependency issue
|
|
implementation( libs.guava )
|
|
|
|
}
|