-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
31 lines (28 loc) · 766 Bytes
/
settings.gradle.kts
File metadata and controls
31 lines (28 loc) · 766 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
exclusiveContent {
forRepository { maven("https://maven.fabricmc.net") { name = "Fabric" } }
filter { includeGroup("net.fabricmc"); includeGroup("net.fabricmc.unpick"); includeGroup("fabric-loom") }
}
}
}
plugins {
// Thanks gradle for pulling the wrong version of GSON
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
dependencyResolutionManagement {
versionCatalogs.register("libs")
}
include(
"OptiGUI",
"OptiGUI-Fabric",
"OptiGUI-NeoForge",
"ScreenAPI",
"ScreenAPI-Fabric",
"ScreenAPI-NeoForge",
"ScreenNBT",
"ScreenNBT-Fabric",
"ScreenNBT-NeoForge",
)