Files
distant-horizons-sharded/settings.gradle
T
James Seibel f34be62af4 add apiInterface and coreApiCommon subprojects
Currently they are just shells and they may be renamed later
2022-08-30 07:55:42 -05:00

25 lines
761 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()
}
}
include("common")
include("fabric")
include("forge")
include("core")
project(":core").projectDir = file('coreSubProjects/core')
include("api")
project(":api").projectDir = file('coreSubProjects/api')
include("apiInterface")
project(":apiInterface").projectDir = file('coreSubProjects/apiInterface')
include("coreApiCommon")
project(":coreApiCommon").projectDir = file('coreSubProjects/coreApiCommon')
rootProject.name = "DistantHorizons"