-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
41 lines (36 loc) · 1.23 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
41
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()
}
}
rootProject.name = "${modid}"
def tesseractFolder = new File('TesseractAPI')
include 'tesseract-forge'
project(':tesseract-forge').setProjectDir(new File("TesseractAPI/forge"))
include 'tesseract-common'
project(':tesseract-common').setProjectDir(new File("TesseractAPI/common"))
include 'tesseract-fabric'
project(':tesseract-fabric').setProjectDir(new File("TesseractAPI/fabric"))
include("antimatter-common")
include("antimatter-fabric")
include("antimatter-forge")
project(':antimatter-common').setProjectDir(new File("common"))
project(':antimatter-forge').setProjectDir(new File("forge"))
project(':antimatter-fabric').setProjectDir(new File("fabric"))