forked from TheMeinerLP/LuckPerms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
33 lines (29 loc) · 809 Bytes
/
Copy pathsettings.gradle
File metadata and controls
33 lines (29 loc) · 809 Bytes
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
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'Forge'
url = 'https://maven.minecraftforge.net/'
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("1.0.0")
}
rootProject.name = 'luckperms'
// This fork ships only the Minestom platform (LuckPerms on Adventure 5 /
// Minestom 2026). The other platform modules stay in the tree but are not part
// of the build - they remain on Adventure 4 and would not compile against the
// Adventure-5 common.
include (
'api',
'common',
'common:loader-utils',
'minestom',
'minestom:loader',
'minestom:app'
)