We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c30d169 commit 5f12f4dCopy full SHA for 5f12f4d
1 file changed
gradle/scripts/dependencies.gradle
@@ -2,16 +2,20 @@ apply from: 'gradle/scripts/helpers.gradle'
2
3
repositories {
4
maven {
5
- name 'CleanroomMC'
6
- url 'https://maven.cleanroommc.com'
+ name = 'CleanroomMC'
+ url = 'https://maven.cleanroommc.com'
7
}
8
9
- name 'CurseMaven'
10
- url 'https://curse.cleanroommc.com'
+ name = 'CurseMaven'
+ url = 'https://cursemaven.com'
11
12
13
- name 'Modrinth'
14
- url 'https://api.modrinth.com/maven'
+ name = 'CleanroomCurseMaven'
+ url = 'https://curse.cleanroommc.com'
15
+ }
16
+ maven {
17
+ name = 'Modrinth'
18
+ url = 'https://api.modrinth.com/maven'
19
20
mavenCentral()
21
mavenLocal() // Must be last for caching to work
0 commit comments