2024-12-18 21:07:01 -07:00
|
|
|
// The settings file is the entry point of every Gradle build.
|
|
|
|
// Its primary purpose is to define the subprojects.
|
|
|
|
// It is also used for some aspects of project-wide configuration, like managing plugins, dependencies, etc.
|
|
|
|
// https://docs.gradle.org/current/userguide/settings_file_basics.html
|
2024-12-21 13:49:22 -07:00
|
|
|
rootProject.name = "roses"
|
2024-12-18 21:07:01 -07:00
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
// Use Maven Central as the default repository (where Gradle will download dependencies) in all subprojects.
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
maven("https://maven.fabricmc.net/") {
|
|
|
|
name = "Fabric"
|
|
|
|
}
|
|
|
|
maven("https://maven.quiltmc.org/repository/release") {
|
|
|
|
name = "Quilt"
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the `app` and `utils` subprojects in the build.
|
|
|
|
// If there are changes in only one of the projects, Gradle will rebuild only the one that has changed.
|
|
|
|
// Learn more about structuring projects with Gradle - https://docs.gradle.org/8.7/userguide/multi_project_builds.html
|
2024-12-21 17:41:00 -07:00
|
|
|
include(":MC20.5-21.1")
|
2024-12-21 19:32:56 -07:00
|
|
|
include(":MC20-20.4")
|
2024-12-22 15:22:15 -07:00
|
|
|
include(":MC21.2-21.4")
|
2024-12-22 15:25:12 -07:00
|
|
|
include(":MC19.3-19.4")
|