generated from Oganesson897/Templater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
38 lines (33 loc) · 969 Bytes
/
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
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 {
/* -------------------------------- Hard Deps -------------------------------- */
implementation rfg.deobf('gregtech:gregtech:2.8.10-beta')
implementation rfg.deobf('gregicality:GregicalityMultiblocks:1.2.11')
implementation rfg.deobf("curse.maven:astral-sorcery-241721:3044416")
}