-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrepositories.gradle
More file actions
68 lines (67 loc) · 1.66 KB
/
repositories.gradle
File metadata and controls
68 lines (67 loc) · 1.66 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
repositories {
// Other repositories described by default:
// CleanroomMC: https://maven.cleanroommc.com
exclusiveContent {
forRepository {
maven {
name 'CurseMaven'
url 'https://cursemaven.com'
}
}
filter {
includeGroup 'curse.maven'
}
}
exclusiveContent {
forRepository {
maven {
name 'Modrinth'
url 'https://api.modrinth.com/maven'
}
}
filter {
includeGroup 'maven.modrinth'
}
}
mavenLocal() // Must be last for caching to work
flatDir {
dirs("lib")
}
maven {
url = uri("https://maven.aliyun.com/nexus/content/groups/public/")
}
maven {
url = uri("https://maven.aliyun.com/nexus/content/repositories/jcenter")
}
maven {
url = uri("https://maven.cleanroommc.com")
}
maven {
url = uri("https://cfa2.cursemaven.com")
}
maven {
url = uri("https://cursemaven.com")
}
maven {
url = uri("https://maven.blamejared.com/")
}
maven {
url = uri("https://repo.spongepowered.org/maven")
}
maven {
name = "GeckoLib"
url = uri("https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/")
}
maven {
name = "OvermindDL1 Maven"
url = uri("https://gregtech.overminddl1.com/")
mavenContent {
excludeGroup("net.minecraftforge") // missing the `universal` artefact
}
}
maven {
name = "Zeitheron Maven"
url = "https://maven.zeith.org"
}
gradlePluginPortal()
}