forked from KyoriPowered/adventure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
53 lines (47 loc) · 1.23 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
51
52
53
pluginManagement {
includeBuild("build-logic")
repositories {
maven(url = "https://repo.stellardrift.ca/repository/internal/") {
name = "stellardriftReleases"
mavenContent { releasesOnly() }
}
maven(url = "https://repo.stellardrift.ca/repository/snapshots/") {
name = "stellardriftSnapshots"
mavenContent { snapshotsOnly() }
}
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
}
}
rootProject.name = "adventure-parent"
// Make sure to update bom/build.gradle.kts when making changes to modules.
sequenceOf(
"api",
"annotation-processors",
"bom",
"extra-kotlin",
"key",
"nbt",
"serializer-configurate4",
"text-logger-slf4j",
"text-minimessage",
"text-serializer-gson",
"text-serializer-gson-legacy-impl",
"text-serializer-json",
"text-serializer-json-legacy-impl",
"text-serializer-legacy",
"text-serializer-plain",
"text-serializer-ansi",
).forEach {
include("adventure-$it")
project(":adventure-$it").projectDir = file(it)
}