mirror of
https://github.com/BlueMap-Minecraft/BlueMapAPI.git
synced 2025-01-28 18:51:19 +01:00
1992148128
* Rework gradle-build setup * Fix versioning * Configure publishing * Fix github action * Fix github action 2 * Reorganize project naming * Update gradle
18 lines
366 B
Plaintext
18 lines
366 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 ) )
|
|
}
|