-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.gradle
41 lines (37 loc) · 1.31 KB
/
settings.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
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven { url "https://maven.architectury.dev/" }
maven { url "https://maven.minecraftforge.net/" }
maven {
name = 'parchment'
url = 'https://maven.parchmentmc.org'
}
maven {
url = "https://maven.wagyourtail.xyz/releases"
}
maven {
url = "https://maven.wagyourtail.xyz/snapshots"
}
gradlePluginPortal()
mavenCentral()
}
}
include 'tesseract-forge'
project(':tesseract-forge').setProjectDir(new File("GT-Reimagined-Lib/TesseractAPI/forge"))
include 'tesseract-common'
project(':tesseract-common').setProjectDir(new File("GT-Reimagined-Lib/TesseractAPI/common"))
include 'tesseract-fabric'
project(':tesseract-fabric').setProjectDir(new File("GT-Reimagined-Lib/TesseractAPI/fabric"))
include("antimatter-common")
include("antimatter-fabric")
include("antimatter-forge")
project(':antimatter-common').setProjectDir(new File("GT-Reimagined-Lib/common"))
project(':antimatter-forge').setProjectDir(new File("GT-Reimagined-Lib/forge"))
project(':antimatter-fabric').setProjectDir(new File("GT-Reimagined-Lib/fabric"))
include("common")
include("fabric")
include("forge")