mirror of
https://github.com/TeamMidnightDust/MidnightLib.git
synced 2025-12-15 09:05:08 +01:00
Yes, that also means Forge! And yes, this was pain. And no, the file size has not increased much!
20 lines
683 B
Groovy
20 lines
683 B
Groovy
architectury {
|
|
common(rootProject.enabled_platforms.split(","))
|
|
}
|
|
repositories {
|
|
maven { url "https://maven.terraformersmc.com/releases" }
|
|
}
|
|
|
|
loom {
|
|
}
|
|
|
|
dependencies {
|
|
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
|
|
modApi "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}"
|
|
// Remove the next line if you don't want to depend on the API
|
|
modApi "dev.architectury:architectury-fabric:${rootProject.architectury_version}"
|
|
modImplementation ("com.terraformersmc:modmenu:${rootProject.mod_menu_version}")
|
|
|
|
compileClasspath(project(path: ":common", configuration: "namedElements")) { transitive false }
|
|
}
|