Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. plugins {
  2. id 'fabric-loom' version '0.2.4'
  3. }
  4.  
  5. sourceCompatibility = 1.8
  6. targetCompatibility = 1.8
  7.  
  8. archivesBaseName = "modid"
  9. version = "1.0.0"
  10.  
  11. minecraft {
  12. }
  13.  
  14. dependencies {
  15. minecraft "com.mojang:minecraft:1.14.2"
  16. mappings "net.fabricmc:yarn:1.14.2+build.7"
  17. modCompile "net.fabricmc:fabric-loader:0.4.8+build.155"
  18.  
  19. //Fabric api
  20. modCompile "net.fabricmc.fabric-api:fabric-api:0.3.0+build.185"
  21.  
  22. modApi "valarlib:valar:lib:1.0.0"
  23. }
  24.  
  25. // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
  26. // if it is present.
  27. // If you remove this task, sources will not be generated.
  28. task sourcesJar(type: Jar, dependsOn: classes) {
  29. classifier = 'sources'
  30. from sourceSets.main.allSource
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement