build.gradle 652 B

123456789101112131415161718192021
  1. apply plugin: 'java'
  2. dependencies {
  3. minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
  4. mappings "de.oceanlabs.mcp:mcp_snapshot:20201028-1.16.3"
  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. testImplementation(platform('org.junit:junit-bom:5.7.1'))
  10. testImplementation('org.junit.jupiter:junit-jupiter')
  11. }
  12. architectury {
  13. injectInjectables = false
  14. common()
  15. }
  16. test {
  17. useJUnitPlatform()
  18. }