EasyAuth/forge/build.gradle

56 lines
1.3 KiB
Groovy
Raw Normal View History

2021-01-14 19:14:57 +00:00
plugins {
id "com.github.johnrengelman.shadow" version "5.0.0"
}
configurations {
shadow
}
architectury {
platformSetupLoomIde()
}
loom {
// Enable this for yarn to work
//useFabricMixin = true
2021-01-19 12:21:38 +00:00
mixinConfigs = ["mixins.simpleauth.json"]
2021-01-14 19:14:57 +00:00
}
dependencies {
2021-01-20 11:33:36 +00:00
minecraft("com.mojang:minecraft:${rootProject.minecraft_version}")
2021-01-14 19:14:57 +00:00
mappings("net.fabricmc:yarn:${rootProject.yarn_mappings}:v2")
2021-01-20 11:33:36 +00:00
forge("net.minecraftforge:forge:${rootProject.minecraft_version}-${rootProject.forge_version}")
2021-01-19 12:21:38 +00:00
// Remove the next line if you don't want to depend on the API
modCompile("me.shedaniel:architectury:${rootProject.architectury_version}:forge")
2021-01-14 19:14:57 +00:00
compileOnly(project(path: ":common")) {
transitive = false
}
2021-01-20 11:33:36 +00:00
runtimeOnly(project(path: ":common", configuration: "transformDevelopmentForge")) {
2021-01-14 19:14:57 +00:00
transitive = false
}
2021-01-20 11:33:36 +00:00
shadow(project(path: ":common", configuration: "transformProductionForge")) {
2021-01-14 19:14:57 +00:00
transitive = false
}
}
shadowJar {
exclude "fabric.mod.json"
configurations = [project.configurations.shadow]
classifier "shadow"
}
remapJar {
dependsOn(shadowJar)
input.set(shadowJar.archivePath)
archiveClassifier = "forge"
}
jar {
manifest {
attributes([
2021-01-19 12:21:38 +00:00
"MixinConfigs": "mixins.simpleauth.json",
2021-01-14 19:14:57 +00:00
])
}
}