-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
38 lines (34 loc) · 1.19 KB
/
settings.gradle
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
28
29
30
31
32
33
34
35
36
37
38
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
// ModLoader Mavens
maven { url = "https://maven.minecraftforge.net/" }
maven { url = "https://maven.neoforged.net/releases" }
maven { url = "https://maven.fabricmc.net/" }
maven { url = "https://maven.legacyfabric.net/" }
// WagYourTail Mavens
maven { url = "https://maven.wagyourtail.xyz/releases" }
maven { url = "https://maven.wagyourtail.xyz/snapshots" }
// LenniReflect Mavens
maven { url = "https://maven.lenni0451.net/releases/" }
maven { url = "https://maven.lenni0451.net/snapshots/" }
// HypherionMC Mavens
maven { url = "https://maven.firstdark.dev/releases" }
maven { url = "https://maven.firstdark.dev/snapshots" }
// Gradle Plugin Portal
gradlePluginPortal() {
content {
excludeGroup("org.apache.logging.log4j")
}
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
include('common')
for (String loaderName : enabled_platforms.split(",")) {
include(loaderName)
}
rootProject.name = 'CraftPresence'