build.gradle 425 B

123456789101112
  1. dependencies {
  2. minecraft "com.mojang:minecraft:${rootProject.architectury.minecraft}"
  3. mappings loom.officialMojangMappings()
  4. // We depend on fabric loader here to use the fabric @Environment annotations
  5. // Do NOT use other classes from fabric loader
  6. modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
  7. implementation project(":common")
  8. }
  9. architectury {
  10. common()
  11. }