diff --git a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resources/resourcepack/texture/AnimationMeta.java b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resources/resourcepack/texture/AnimationMeta.java index 1c97eea5..0042e8fd 100644 --- a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resources/resourcepack/texture/AnimationMeta.java +++ b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resources/resourcepack/texture/AnimationMeta.java @@ -1,3 +1,27 @@ +/* + * This file is part of BlueMap, licensed under the MIT License (MIT). + * + * Copyright (c) Blue (Lukas Rieger) + * Copyright (c) contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ package de.bluecolored.bluemap.core.resources.resourcepack.texture; import com.google.gson.Gson; diff --git a/build.gradle.kts b/build.gradle.kts index d47a75a4..c012da6f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,6 +15,9 @@ tasks.register("clean") { tasks.register("build") { gradle.includedBuilds.forEach { + if (it.name == "BlueMapCore") return@forEach + if (it.name == "BlueMapCommon") return@forEach + dependsOn(it.task(":release")) } } @@ -39,6 +42,9 @@ tasks.register("spotlessCheck") { tasks.register("publish") { gradle.includedBuilds.forEach { + if (it.name == "BlueMapCore") return@forEach + if (it.name == "BlueMapCommon") return@forEach + dependsOn(it.task(":publish")) } } diff --git a/settings.gradle.kts b/settings.gradle.kts index 2b03f1c7..496dfa4f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -4,6 +4,10 @@ rootProject.name = "BlueMap" val releaseNotesFile = file("release.md") if (!releaseNotesFile.exists()) releaseNotesFile.createNewFile(); +// bluemap +includeBuild("BlueMapCore") +includeBuild("BlueMapCommon") + // implementations includeBuild("implementations/cli")