mirror of
https://github.com/TeamMidnightDust/MidnightLib.git
synced 2025-12-15 17:05:09 +01:00
- Native support for NeoForge (& dropped support for regular Forge) - Cleanup of some code -> Overview button is now added via callbacks instead of a mixin - Unify client & server classes - Minor breaking change only affecting mods using the hiding functionality
17 lines
377 B
Groovy
17 lines
377 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url "https://maven.fabricmc.net/" }
|
|
maven { url "https://maven.architectury.dev/" }
|
|
maven { url "https://maven.neoforged.net/releases" }
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
include("common")
|
|
include("fabric-like")
|
|
include("fabric")
|
|
//include("quilt")
|
|
include("neoforge")
|
|
|
|
rootProject.name = "midnightlib"
|