forked from GeyserMC/Hydraulic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
78 lines (60 loc) · 1.87 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
// Geyser, Floodgate, Cumulus etc.
maven("https://repo.opencollab.dev/main")
maven("https://repo.opencollab.dev/maven-snapshots")
// Minecraft
maven("https://libraries.minecraft.net") {
name = "minecraft"
mavenContent {
releasesOnly()
}
}
// Architectury
maven("https://maven.architectury.dev/")
// NeoForge
maven("https://maven.neoforged.net/releases")
// Fabric
maven("https://maven.fabricmc.net/")
// Sponge Snapshots
maven("https://repo.spongepowered.org/repository/maven-public/")
// PackConverter
maven("https://jitpack.io") {
content {
includeGroupByRegex("com\\.github\\..*")
}
}
// For Adventure snapshots
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.opencollab.dev/maven-snapshots")
maven("https://jitpack.io") {
content {
includeGroupByRegex("com\\.github\\..*")
}
}
maven("https://maven.architectury.dev/")
maven("https://maven.neoforged.net/releases")
maven("https://maven.fabricmc.net/")
// Java pack library
maven("https://repo.unnamed.team/repository/unnamed-public/")
}
plugins {
id("net.kyori.blossom") version "1.2.0"
id("net.kyori.indra")
id("net.kyori.indra.git")
}
includeBuild("build-logic")
}
rootProject.name = "hydraulic-parent"
include(":shared")
include(":fabric")
include(":neoforge")