-
Notifications
You must be signed in to change notification settings - Fork 696
/
Copy pathsettings.gradle
78 lines (74 loc) · 2.13 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import org.gradle.api.initialization.resolve.RepositoriesMode
import org.gradle.api.initialization.resolve.RulesMode
pluginManagement {
plugins {
id 'com.diffplug.spotless' version '6.25.0'
// https://projects.neoforged.net/neoforged/ModDevGradle
id 'net.neoforged.moddev' version '2.0.74'
id 'net.neoforged.moddev.repositories' version '2.0.74'
}
}
plugins {
id 'net.neoforged.moddev.repositories'
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
repositories {
maven {
url = 'https://maven.shedaniel.me/'
content {
includeGroup 'me.shedaniel'
includeGroup 'me.shedaniel.cloth'
includeGroup 'dev.architectury'
}
}
maven {
url = 'https://maven2.bai.lol'
content {
includeGroup 'mcp.mobius.waila'
includeGroup 'lol.bai'
}
}
maven {
name = 'TerraformersMC'
url = 'https://maven.terraformersmc.com/'
content {
includeGroup 'dev.emi'
}
}
maven {
name = 'cursemaven'
url = 'https://www.cursemaven.com'
content {
includeGroup 'curse.maven'
}
}
maven { // for TOP
url = 'https://maven.k-4u.nl/'
content {
includeGroup 'mcjty.theoneprobe'
}
}
maven {
url = 'https://maven.theillusivec4.top/'
content {
includeGroup 'top.theillusivec4.curios'
}
}
maven {
url = 'https://maven.blamejared.com/'
content {
includeGroup 'mezz.jei'
}
}
mavenLocal() {
content {
includeModule('org.appliedenergistics', 'guideme')
}
}
mavenCentral()
}
}
rootProject.name = 'ae2';