-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrepositories.gradle
More file actions
124 lines (111 loc) · 2.86 KB
/
repositories.gradle
File metadata and controls
124 lines (111 loc) · 2.86 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
repositories {
maven {
name = 'Twelve Iterations'
url = 'https://maven.twelveiterations.com/repository/maven-public/'
content {
includeGroup 'net.blay09.mods'
}
}
maven {
name = 'Twelve Iterations Proxy'
url = 'https://maven.twelveiterations.com/repository/maven-proxy/'
content {
includeGroup 'dev.emi'
}
}
maven {
name = 'CurseMaven'
url = 'https://www.cursemaven.com'
content {
includeGroup 'curse.maven'
}
}
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
maven {
name = 'Shedaniel'
url = 'https://maven.shedaniel.me/'
content {
includeGroup "me.shedaniel"
includeGroup "me.shedaniel.cloth"
includeGroup "dev.architectury"
}
}
maven {
name = 'BlameJared'
url = 'https://maven.blamejared.com'
content {
includeGroup "mezz.jei"
includeGroup "info.journeymap"
includeGroup "mysticdrew"
includeGroupAndSubgroups "com.blamejared"
}
}
maven {
name = 'Bai'
url = 'https://maven.bai.lol'
content {
includeGroup "lol.bai"
includeGroup "mcp.mobius.waila"
}
}
maven {
name = 'JitPack'
url = 'https://jitpack.io'
content {
includeGroup "com.github.BlueMap-Minecraft"
includeGroup "com.github.mattidragon"
}
}
maven {
name = 'MikePrimm'
url = 'https://repo.mikeprimm.com/'
content {
includeGroup "us.dynmap"
}
}
maven {
name = 'LadySnake'
url = 'https://maven.ladysnake.org/releases'
content {
includeGroup "dev.onyxstudios.cardinal-components-api"
includeGroup "org.ladysnake.cardinal-components-api"
}
}
maven {
name = 'Siphalor'
url = 'https://maven.siphalor.de/'
content {
includeGroup "de.siphalor"
}
}
maven {
name = 'Theillusivec4'
url = 'https://maven.theillusivec4.top/'
content {
includeGroup "top.theillusivec4.curios"
}
}
maven {
name = 'CloudSmith'
url = 'https://dl.cloudsmith.io/public/novamachina-mods/release/maven/'
content {
includeGroup "novamachina.novacore"
includeGroup "novamachina.exnihilosequentia"
}
}
exclusiveContent {
forRepository {
maven {
name = 'Minecraft'
url = 'https://libraries.minecraft.net/'
}
}
filter { includeGroupAndSubgroups("com.mojang") }
}
}