-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsettings.gradle
More file actions
27 lines (23 loc) · 669 Bytes
/
settings.gradle
File metadata and controls
27 lines (23 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
pluginManagement {
repositories {
maven { url "https://maven.fabricmc.net/" }
maven { url "https://maven.architectury.dev/" }
maven { url "https://maven.neoforged.net/releases/" }
maven { url "https://maven.parchmentmc.org" }
gradlePluginPortal()
}
}
rootProject.name = 'miapi'
include("common")
include("fabric")
include("neoforge")
def enableAddons = providers
.gradleProperty("run_addons")
.map { it.toBoolean() }
.orElse(false)
.get()
if (enableAddons && System.getenv("JITPACK") == null) {
includeBuild("./archery")
includeBuild("./arsenal")
includeBuild("./armory")
}