almostunified/Fabric/build.gradle.kts

53 lines
2 KiB
Text
Raw Normal View History

2022-05-31 10:50:46 -04:00
val minecraftVersion: String by project
val fabricLoaderVersion: String by project
2023-02-01 14:43:30 -05:00
val fabricApiVersion: String by project
val fabricRecipeViewer: String by project
2022-09-16 14:13:01 -04:00
val jeiVersion: String by project
2023-07-28 18:59:02 -04:00
val reiVersion: String by project
2022-05-31 10:50:46 -04:00
plugins {
2023-06-14 05:48:49 -04:00
id("com.github.johnrengelman.shadow") version ("8.1.1")
2022-05-31 10:50:46 -04:00
}
2023-02-01 14:43:30 -05:00
architectury {
platformSetupLoomIde()
fabric()
2022-05-31 10:50:46 -04:00
}
loom {
2023-07-28 18:59:02 -04:00
if (project.findProperty("enableAccessWidener") == "true") { // optional property for `gradle.properties`
2023-02-01 14:43:30 -05:00
accessWidenerPath.set(project(":Common").loom.accessWidenerPath)
println("Access widener enabled for project ${project.name}. Access widener path: ${loom.accessWidenerPath.get()}")
}
}
2023-02-01 14:43:30 -05:00
val common by configurations
val shadowCommon by configurations
2023-07-28 18:59:02 -04:00
dependencies {
2023-06-14 05:48:49 -04:00
// loader
modImplementation("net.fabricmc:fabric-loader:$fabricLoaderVersion")
2023-02-01 14:43:30 -05:00
modApi("net.fabricmc.fabric-api:fabric-api:$fabricApiVersion+$minecraftVersion")
2023-06-14 05:48:49 -04:00
// common module
2023-02-01 14:43:30 -05:00
common(project(":Common", "namedElements")) { isTransitive = false }
shadowCommon(project(":Common", "transformProductionFabric")) { isTransitive = false }
2023-06-14 05:48:49 -04:00
// compile time mods
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api-fabric:$reiVersion") // required for common rei plugin
compileOnly("me.shedaniel:REIPluginCompatibilities-forge-annotations:9.+") // required to disable rei compat layer on jei plugin
testCompileOnly("me.shedaniel:REIPluginCompatibilities-forge-annotations:9.+") // don't question this, it's required for compiling
2023-04-18 17:55:06 -04:00
modCompileOnly("mezz.jei:jei-$minecraftVersion-fabric-api:$jeiVersion") // required for common jei plugin and mixin
2023-06-14 05:48:49 -04:00
// runtime dependencies
modLocalRuntime(
when (fabricRecipeViewer) {
"jei" -> "mezz.jei:jei-$minecraftVersion-fabric:$jeiVersion"
2023-07-28 18:59:02 -04:00
"rei" -> "me.shedaniel:RoughlyEnoughItems-fabric:$reiVersion"
2023-06-14 05:48:49 -04:00
else -> throw GradleException("Invalid fabricRecipeViewer value: $fabricRecipeViewer")
}
) {
exclude("net.fabricmc", "fabric-loader")
}
2022-05-31 10:50:46 -04:00
}