-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (51 loc) · 1.55 KB
/
build.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
plugins {
alias(libs.plugins.acl.plugin)
id 'java'
// alias(libs.plugins.architectury.plugin)
// alias(libs.plugins.architectury.loom)
}
allprojects {
repositories {
maven {
url = rootProject.file("rootmaven")
}
maven { url "https://github.com/XenFork/Architectury-compatibility-layer/rootmaven/" }
maven { url "https://maven.shedaniel.me/" }
maven { url = "https://api.modrinth.com/maven" }
maven {
url = 'https://www.cursemaven.com'
content {
includeGroup "curse.maven"
}
}
maven {
name = "modmenu"
url = "https://maven.terraformersmc.com/releases/"
}
maven {
name = "Resourceful Bees Maven"
url = "https://nexus.resourcefulbees.com/repository/maven-public/"
}
maven {
url = "https://maven.saps.dev/minecraft"
content {
includeGroup "dev.latvian.mods"
}
}
maven {
name = 'GeckoLib'
url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/'
}
maven {
name = "create maven"
url 'https://maven.tterrag.com'
}
maven {
name = "Create Fabric Maven"
url 'https://mvn.devos.one/snapshots/'
}
maven { url = "https://jitpack.io/" }
maven { url = "https://maven.cafeteria.dev/releases" }
maven { url = "https://maven.jamieswhiteshirt.com/libs-release" }
}
}