-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
49 lines (47 loc) · 1.25 KB
/
dependencies.gradle
File metadata and controls
49 lines (47 loc) · 1.25 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
repositories {
// Other repositories described by default:
// CleanroomMC: https://maven.cleanroommc.com
/*
maven {
name 'CurseMaven'
url 'https://cursemaven.com'
content {
includeGroup 'curse.maven'
}
}
*/
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'
}
}
maven {
name 'BlameJared Maven'
url 'https://maven.blamejared.com'
}
mavenLocal() // Must be last for caching to work
}
dependencies {
implementation rfg.deobf("curse.maven:configurator-legacy-882624:4651245")
compileOnly rfg.deobf("curse.maven:groovyscript-687577:4610037")
compileOnly "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.1.20.684"
compileOnly rfg.deobf("curse.maven:botania-225643:3330934")
runtimeOnly rfg.deobf("curse.maven:baubles-227083:2518667")
}