-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
37 lines (34 loc) · 1023 Bytes
/
dependencies.gradle
File metadata and controls
37 lines (34 loc) · 1023 Bytes
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
repositories {
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 {url 'https://maven.blamejared.com'}
maven {url 'https://maven.gtceu.com'}
mavenLocal() // Must be last for caching to work
}
dependencies {
implementation rfg.deobf('gregtech:gregtech:2.8.10-beta')
implementation rfg.deobf('gregicality:GregicalityMultiblocks:1.2.11')
implementation rfg.deobf('curse.maven:biomes-o-plenty-220318:2842510')
implementation rfg.deobf("curse.maven:tinkers-construct-74072:2902483")
implementation rfg.deobf("curse.maven:mantle-74924:2713386")
}