diff --git a/build.gradle.kts b/build.gradle.kts index b671f65a..1755fe0e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,6 +31,7 @@ plugins { id("com.github.johnrengelman.shadow") version "8.1.1" apply false id("dev.ithundxr.silk") version "0.11.+" // https://github.com/IThundxr/silk id("dev.ithundxr.numismatics.gradle") apply false + //id("dev.ithundxr.lotus.gradle") version "0.0.2" apply false } val isRelease = System.getenv("RELEASE_BUILD")?.toBoolean() ?: false @@ -66,7 +67,8 @@ allprojects { subprojects { apply(plugin = "dev.architectury.loom") - apply(plugin = "dev.ithundxr.numismatics.gradle" ) + apply(plugin = "dev.ithundxr.numismatics.gradle") + //apply(plugin = "dev.ithundxr.lotus.gradle") val capitalizedName = project.name.capitalized() diff --git a/settings.gradle.kts b/settings.gradle.kts index 63f56de5..b17b6aa3 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,9 +1,28 @@ +/* + * Numismatics + * Copyright (c) 2024 The Railways Team + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + pluginManagement { repositories { maven("https://maven.fabricmc.net/") maven("https://maven.architectury.dev/") maven("https://maven.minecraftforge.net/") maven("https://maven.quiltmc.org/repository/release") + maven("https://maven.ithundxr.dev/releases") gradlePluginPortal() } }