-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
49 lines (45 loc) · 1.19 KB
/
settings.gradle
File metadata and controls
49 lines (45 loc) · 1.19 KB
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
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven {
name = 'Forge'
url = 'https://maven.minecraftforge.net/'
}
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'Sponge Snapshots'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven { url = 'https://maven.parchmentmc.org' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
}
dependencyResolutionManagement {
versionCatalogs {
libs {
from(files("modules/GregTech-Modern/gradle/libs.versions.toml"))
}
forge {
from(files("modules/GregTech-Modern/gradle/forge.versions.toml"))
}
ctnh {
from(files("gradle/ctnh.versions.toml"))
}
}
}
rootProject.name = 'CTNH-Multi'
include "modules:CTNH-Bio"
include "modules:CTNH-Core"
include "modules:CTPP"
include "modules:CTNH-Lib"
include "modules:CTNH-Mana"
include "modules:CTNH-Energy"
include "modules:GregTech-Modern"
include "modules:CTNH-Astral"