-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
34 lines (27 loc) · 793 Bytes
/
settings.gradle.kts
File metadata and controls
34 lines (27 loc) · 793 Bytes
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
@file:Suppress("UnstableApiUsage")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.opencollab.dev/main/")
maven("https://jitpack.io") {
content {
includeGroupByRegex("com\\.github\\..*")
}
}
maven("https://maven.architectury.dev/")
maven("https://maven.neoforged.net/releases")
maven("https://maven.fabricmc.net/")
}
plugins {
id("net.kyori.blossom")
id("net.kyori.indra")
id("net.kyori.indra.git")
id("floodgate-modded.build-logic")
}
includeBuild("build-logic")
}
rootProject.name = "floodgate-modded"
include(":mod")
include(":fabric")
include(":neoforge")