-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
49 lines (42 loc) · 950 Bytes
/
settings.gradle
File metadata and controls
49 lines (42 loc) · 950 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = "NeoForged"
url = uri("https://maven.neoforged.net/releases")
content {
includeGroup("net.neoforged")
}
}
}
plugins {
id 'net.neoforged.moddev.legacyforge' version '2.0.116'
id 'net.neoforged.moddev.legacyforge.repositories' version '2.0.116'
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
id 'net.neoforged.moddev.legacyforge.repositories'
}
dependencyResolutionManagement {
// repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
// rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
repositories {
mavenCentral()
maven {
name = "Curse Maven"
url = uri("https://cursemaven.com")
content {
includeGroup("curse.maven")
}
}
maven {
name = "Modrinth Maven"
url = uri("https://api.modrinth.com/maven")
content {
includeGroup("maven.modrinth")
}
}
mavenLocal()
}
}