12345678910111213141516171819202122232425262728293031323334353637 |
- plugins {
- id "com.github.johnrengelman.shadow" version "5.0.0"
- id "com.matthewprenger.cursegradle"
- }
- loom {
- mixinConfig "architectury.mixins.json"
- localMods {
- it.add(project(":forge").sourceSets.main)
- }
- }
- architectury {
- platformSetupLoomIde()
- forge()
- }
- dependencies {
- minecraft "com.mojang:minecraft:${gradle.rootProject.architectury.minecraft}"
- mappings loom.officialMojangMappings()
- forge "net.minecraftforge:forge:${gradle.rootProject.architectury.minecraft}-${rootProject.forge_version}"
- implementation project(path: ":forge", configuration: "dev")
- implementation(project(path: ":common")) {
- transitive = false
- }
- developmentForge(project(path: ":common")) {
- transitive = false
- }
- implementation(project(path: ":testmod-common")) {
- transitive = false
- }
- developmentForge(project(path: ":testmod-common")) {
- transitive = false
- }
- }
|