Setup the API sub-project gradle dependencies

This commit is contained in:
James Seibel
2022-08-30 22:02:39 -05:00
parent f34be62af4
commit ef0d3b3957
3 changed files with 67 additions and 38 deletions
+4 -2
View File
@@ -8,17 +8,19 @@ pluginManagement {
}
}
// 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("apiInterface")
project(":apiInterface").projectDir = file('coreSubProjects/apiInterface')
include("coreApiCommon")
project(":coreApiCommon").projectDir = file('coreSubProjects/coreApiCommon')
include("coreShared")
project(":coreShared").projectDir = file('coreSubProjects/coreShared')
rootProject.name = "DistantHorizons"