12345678910111213141516171819202122232425 |
- plugins {
- id "com.github.johnrengelman.shadow" version "7.0.0"
- id "com.matthewprenger.cursegradle"
- }
- architectury {
- platformSetupLoomIde()
- fabric()
- }
- configurations {
- common
- compileClasspath.extendsFrom common
- runtimeClasspath.extendsFrom common
- developmentFabric.extendsFrom common
- }
- dependencies {
- modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
- modImplementation "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}"
- implementation project(path: ":fabric", configuration: "namedElements")
- common(project(path: ":common", configuration: "namedElements")) { transitive false }
- common(project(path: ":testmod-common", configuration: "namedElements")) { transitive false }
- }
|