-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
settings.gradle.kts
50 lines (43 loc) · 1.17 KB
/
settings.gradle.kts
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
rootProject.name = "nova-parent"
// core project
include("nova")
include("nova-api")
include("nova-gradle-plugin")
// hooks
include("nova-hooks:nova-hook-fastasyncworldedit")
include("nova-hooks:nova-hook-griefprevention")
include("nova-hooks:nova-hook-itemsadder")
include("nova-hooks:nova-hook-luckperms")
include("nova-hooks:nova-hook-mmoitems")
include("nova-hooks:nova-hook-oraxen")
include("nova-hooks:nova-hook-plotsquared")
include("nova-hooks:nova-hook-protectionstones")
include("nova-hooks:nova-hook-quickshop")
include("nova-hooks:nova-hook-residence")
include("nova-hooks:nova-hook-towny")
include("nova-hooks:nova-hook-vault")
include("nova-hooks:nova-hook-worldedit")
include("nova-hooks:nova-hook-worldguard")
// misc
include("catalog")
dependencyResolutionManagement {
versionCatalogs {
create("libs")
}
}
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven("https://repo.xenondevs.xyz/releases/")
}
}
plugins {
id("com.gradle.enterprise") version("3.13")
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}