-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
63 lines (49 loc) · 1.52 KB
/
settings.gradle.kts
File metadata and controls
63 lines (49 loc) · 1.52 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
rootProject.name = "BuildTeamTools"
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
//mavenLocal() // NEVER use in Production/Commits!
maven {
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven {
url = uri("https://maven.buildtheearth.net/releases")
}
maven {
url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
}
maven {
url = uri("https://mvn.alps-bte.com/repository/alps-bte/")
}
maven {
url = uri("https://repo.onarandombox.com/content/groups/public/")
}
maven {
url = uri("https://repo.codemc.io/repository/maven-snapshots/")
}
maven {
url = uri("https://repo.codemc.io/repository/maven-public/")
}
maven {
url = uri("https://jitpack.io")
}
maven {
url = uri("https://repo.dmulloy2.net/repository/public/")
}
maven {
url = uri("https://maven.daporkchop.net/")
}
maven {
url = uri("https://download.java.net/maven/2")
}
maven {
url = uri("https://maven.enginehub.org/repo/")
}
maven {
url = uri("https://mvn.wesjd.net/")
}
maven { url = uri("https://jitpack.io") }
maven("https://repo.bluecolored.de/releases")
}
}