build.gradle 989 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. plugins {
  2. id 'fabric-loom' version '0.2.0-SNAPSHOT'
  3. }
  4. sourceCompatibility = 1.8
  5. targetCompatibility = 1.8
  6. archivesBaseName = "RoughlyEnoughItems"
  7. version = "2.3.3.57"
  8. def minecraftVersion = "19w09a"
  9. def yarnVersion = "19w09a.4"
  10. def fabricVersion = "0.2.3.108"
  11. def fabricLoaderVersion = "0.3.7.109"
  12. def pluginLoaderVersion = "1.14-1.0.6-8"
  13. minecraft {
  14. }
  15. processResources {
  16. filesMatching('fabric.mod.json') {
  17. expand 'version': project.version
  18. }
  19. inputs.property "version", project.version
  20. }
  21. repositories {
  22. maven { url "https://tehnut.info/maven/" }
  23. }
  24. dependencies {
  25. minecraft "com.mojang:minecraft:${minecraftVersion}"
  26. mappings "net.fabricmc:yarn:${yarnVersion}"
  27. modCompile "net.fabricmc:fabric-loader:${fabricLoaderVersion}"
  28. // Fabric API. This is technically optional, but you probably want it anyway.
  29. modCompile "net.fabricmc:fabric:${fabricVersion}"
  30. modCompile "info.tehnut.pluginloader:plugin-loader:${pluginLoaderVersion}"
  31. }