-
Notifications
You must be signed in to change notification settings - Fork 8
/
settings.gradle.kts
82 lines (72 loc) · 2.58 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
name = "sonatypeOssSnapshots"
mavenContent { snapshotsOnly() }
}
}
includeBuild("gradle/build-logic")
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
name = "sonatypeOssSnapshots"
mavenContent { snapshotsOnly() }
}
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
name = "sonatypeS01OssSnapshots"
mavenContent { snapshotsOnly() }
}
/* The Minecraft repository, used for cloud-brigadier */
maven("https://libraries.minecraft.net/") {
name = "minecraftLibraries"
mavenContent {
releasesOnly()
includeGroup("com.mojang")
includeGroup("net.minecraft")
}
}
/* The paper repository, used for cloud-paper */
maven("https://repo.papermc.io/repository/maven-public/")
/* Used for cloud-cloudburst */
maven("https://repo.opencollab.dev/maven-snapshots/") {
name = "cloudburst"
mavenContent {
snapshotsOnly()
includeGroup("org.cloudburstmc")
}
}
/* The current Sponge repository */
maven("https://repo.spongepowered.org/repository/maven-public/") {
name = "sponge"
mavenContent { includeGroup("org.spongepowered") }
}
}
}
rootProject.name = "cloud-minecraft"
include("cloud-minecraft-bom")
include("cloud-brigadier")
include("cloud-bukkit")
include("cloud-bungee")
include("cloud-cloudburst")
include("cloud-minecraft-extras")
include("cloud-minecraft-signed-arguments")
include("cloud-paper")
include("cloud-paper-signed-arguments")
include("cloud-sponge7")
include("cloud-velocity")
include("examples/example-bukkit")
findProject(":examples/example-bukkit")?.name = "example-bukkit"
include("examples/example-paper")
findProject(":examples/example-paper")?.name = "example-paper"
include("examples/example-bungee")
findProject(":examples/example-bungee")?.name = "example-bungee"
include("examples/example-velocity")
findProject(":examples/example-velocity")?.name = "example-velocity"