forked from Hexaoxide/Carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
82 lines (77 loc) · 2.31 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")
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.parks.dev/repository/maven-public/")
// temporary cloud snapshots repo for sponge-8
maven("https://repo.jpenilla.xyz/snapshots/") {
mavenContent {
snapshotsOnly()
includeGroup("cloud.commandframework")
}
}
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
mavenContent { snapshotsOnly() }
}
// PaperMC
maven("https://papermc.io/repo/repository/maven-public/")
// Sponge API
maven("https://repo.spongepowered.org/repository/maven-public/")
// Velocity Proxy for run config
ivy("https://versions.velocitypowered.com/download/") {
patternLayout { artifact("[revision].[ext]") }
metadataSources { artifact() }
content { includeModule("com.velocitypowered", "velocity-proxy") }
}
// PlaceholderAPI
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/") {
content { includeGroup("me.clip") }
}
maven("https://jitpack.io") {
content { includeGroupByRegex("com\\.github\\..*") }
}
// EssentialsDiscord
maven("https://repo.essentialsx.net/releases/") {
mavenContent {
releasesOnly()
includeGroup("net.essentialsx")
}
}
maven("https://repo.essentialsx.net/snapshots/") {
mavenContent {
snapshotsOnly()
includeGroup("net.essentialsx")
}
}
// DiscordSRV
maven("https://m2.dv8tion.net/releases")
maven("https://nexus.scarsz.me/content/groups/public/")
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.fabricmc.net/")
maven("https://maven.quiltmc.org/repository/release/")
maven("https://repo.jpenilla.xyz/snapshots/")
maven("https://repo.stellardrift.ca/repository/snapshots/")
}
includeBuild("build-logic")
}
plugins {
id("ca.stellardrift.polyglot-version-catalogs") version "5.0.1"
id("quiet-fabric-loom") version "0.11-SNAPSHOT"
}
rootProject.name = "CarbonChat"
sequenceOf(
"api",
"common",
"bukkit",
"sponge",
"fabric",
"velocity"
).forEach {
include("carbonchat-$it")
project(":carbonchat-$it").projectDir = file(it)
}