forked from Rongmario/Modular-Magic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdependencies.gradle
78 lines (70 loc) · 3.25 KB
/
dependencies.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
}
dependencies {
// Example - Dependency descriptor:
// 'com.google.code.gson:gson:2.8.6' << group: com.google.code.gson, name:gson, version:2.8.6
// 'group:name:version:classifier' where classifier is optional
// Example - Deobfuscating dependencies:
// rfg.deobf('curse.maven:had-enough-items-557549:4543375')
// By wrapping a dependency descriptor in rfg.deobf() method call, the dependency is queued for deobfuscation
// When deobfuscating, RFG respects the mapping_channel + mapping_version stated in gradle.properties
// Example - CurseMaven dependencies:
// 'curse.maven:had-enough-items-557549:4543375' << had-enough-items = project slug, 557549 = project id, 4543375 = file id
// Full documentation: https://cursemaven.com/
// Example - Modrinth dependencies:
// 'maven.modrinth:jei:4.16.1.1000' << jei = project name, 4.16.1.1000 = file version
// Full documentation: https://docs.modrinth.com/docs/tutorials/maven/
// Common dependency types (configuration):
// implementation = dependency available at both compile time and runtime
// runtimeOnly = runtime dependency
// compileOnly = compile time dependency
// annotationProcessor = annotation processing dependencies
// Transitive dependencies:
// (Dependencies that your dependency depends on)
// If you wish to exclude transitive dependencies in the described dependencies
// Use a closure as such:
// implementation ('com.google.code.gson:gson:2.8.6') {
// transitive = false
// }
implementation rfg.deobf('curse.maven:had-enough-items-557549:4543375')
implementation rfg.deobf('curse.maven:modularmachinery-community-edition-817377:4687266')
implementation rfg.deobf('curse.maven:astral-sorcery-241721:3044416')
implementation rfg.deobf('curse.maven:blood-magic-224791:2822288')
implementation rfg.deobf('curse.maven:thaumcraft-223628:2629023')
implementation rfg.deobf('curse.maven:extrautils2-225561:2678374')
implementation rfg.deobf('curse.maven:naturesaura-306626:2882138')
implementation rfg.deobf('curse.maven:botania-225643:3330934')
implementation rfg.deobf('curse.maven:baubles-227083:2518667')
implementation rfg.deobf('curse.maven:guideapi-228832:2645992')
implementation rfg.deobf('curse.maven:patchouli-306770:3162874')
implementation "curse.maven:crafttweaker-239197:4707234"
runtimeOnly 'curse.maven:ftb-library-237167:2985811'
runtimeOnly 'curse.maven:ftb-utilities-237102:3157548'
runtimeOnly 'curse.maven:had-enough-characters-640802:4035773'
runtimeOnly 'curse.maven:better-advancements-272515:2685984'
}