25 lines
742 B
Groovy
25 lines
742 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url "https://maven.fabricmc.net/" }
|
|
maven { url "https://maven.architectury.dev/" }
|
|
maven { url "https://maven.minecraftforge.net/" }
|
|
maven { url "https://repo.spongepowered.org/repository/maven-public/"}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
// Minecraft dependent sub-projects
|
|
include("common")
|
|
include("fabric")
|
|
include("forge")
|
|
|
|
// Minecraft independent sub-projects
|
|
include("core")
|
|
project(":core").projectDir = file('coreSubProjects/core')
|
|
include("api")
|
|
project(":api").projectDir = file('coreSubProjects/api')
|
|
include("commonInterface")
|
|
project(":commonInterface").projectDir = file('coreSubProjects/commonInterface')
|
|
|
|
rootProject.name = "DistantHorizons"
|