-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
58 lines (50 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
pluginManagement {
repositories {
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/'
}
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
}
rootProject.name = 'Multiproject Template'
// === FORGE ===
// ----------
//include "modules:1.12.2"
//include "modules:1.13.2"
//include "modules:1.14.4"
//include "modules:1.15.2"
//include "modules:1.16.5"
//include "modules:1.17.1"
//include "modules:1.18.2"
//include "modules:1.19.2"
//include "modules:1.19.2"
//include "modules:1.19.4"
//include "modules:1.20.1"
// ----------
// === FABRIC ===
include "modules:fabric_1.20.1"
// ----------
// You can add as many modules as you want, for this copy the content of "example_module" to each new module!
include "modules:example_module"
// Example how to use multiple modules within a module:
// include "modules:MODULE_NAME",
// "modules:MODULE_NAME:SUB_MODULE_NAME",
// "modules:MODULE_NAME:SUB_MODULE_NAME"
// You can even add a Multi-Loader project ! (using Architectury may require some extra steps)
//include "modules:multiproject_module",
// "modules:multiproject_module:common",
// "modules:multiproject_module:fabric",
// "modules:multiproject_module:forge"