-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
37 lines (30 loc) · 1013 Bytes
/
settings.gradle.kts
File metadata and controls
37 lines (30 loc) · 1013 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
33
34
35
36
37
pluginManagement {
repositories {
gradlePluginPortal()
// sayandev
maven("https://repo.sayandev.org/releases")
// Takenaka
maven("https://repo.screamingsandals.org/public")
maven("https://repo.screamingsandals.org/snapshots")
}
}
dependencyResolutionManagement {
versionCatalogs {
register("stickyNoteLibs") {
from(files("gradle/libs.versions.toml"))
}
}
}
rootProject.name = "StickyNote"
include("stickynote-core")
include("stickynote-catalog")
include("stickynote-bukkit")
include("stickynote-bukkit:stickynote-bukkit-nms")
include("stickynote-proxy")
include("stickynote-proxy:stickynote-proxy-velocity")
include("stickynote-proxy:stickynote-proxy-bungeecord")
include("stickynote-loader")
include("stickynote-loader:stickynote-loader-common")
include("stickynote-loader:stickynote-loader-bukkit")
include("stickynote-loader:stickynote-loader-bungeecord")
include("stickynote-loader:stickynote-loader-velocity")