build.gradle 579 B

12345678910111213141516
  1. import java.util.stream.Collectors
  2. dependencies {
  3. minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
  4. mappings minecraft.officialMojangMappings()
  5. compileOnly "com.google.code.findbugs:jsr305:3.+"
  6. // We depend on fabric loader here to use the fabric @Environment annotations
  7. // Do NOT use other classes from fabric loader
  8. modCompile "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
  9. //TODO this is a hack, needs a Fabric alternative
  10. compile 'com.electronwill.night-config:core:3.6.2'
  11. }
  12. architectury {
  13. common()
  14. }