-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathsettings.gradle
40 lines (34 loc) · 1 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 {
gradlePluginPortal()
maven { url 'https://maven.fabricmc.net/' }
maven { url 'https://maven.architectury.dev/' }
maven { url 'https://maven.minecraftforge.net' }
maven { url 'https://repo.essential.gg/repository/maven-public' }
}
plugins {
def egtVersion = "0.6.5"
id("gg.essential.defaults") version egtVersion
id("gg.essential.multi-version.root") version egtVersion
}
}
rootProject.name = 'HuskHomes'
include(
'common',
// Paper/Spigot
'bukkit',
'paper',
)
// Fabric
include("fabric")
project(":fabric").with {
projectDir = file("fabric/")
buildFileName = "root.gradle"
}
file('fabric').listFiles((FileFilter) ((File file) -> file.isDirectory() && file.name ==~ /(\d+)\.(\d+)(\.(\d+))?/)).each {
include("fabric:$it.name")
project(":fabric:$it.name").with {
projectDir = file("fabric/${it.name}")
buildFileName = '../build.gradle'
}
}