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