Advertisement
hassansyyid

Untitled

Nov 14th, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. plugins {
  2. id "net.minecraftforge.gradle.forge" version "2.0.2"
  3. }
  4.  
  5. version = "1.0"
  6. group= "io.github.hsyyid.wilsonsmp"
  7. archivesBaseName = "wilsonsmp"
  8. sourceCompatibility = 1.8
  9. targetCompatibility = 1.8
  10.  
  11. minecraft {
  12. version = "1.8-11.14.3.1543"
  13. runDir = "run"
  14. mappings = "snapshot_20141130"
  15. }
  16.  
  17. processResources
  18. {
  19. inputs.property "version", project.version
  20. inputs.property "mcversion", project.minecraft.version
  21.  
  22. from(sourceSets.main.resources.srcDirs) {
  23. include 'mcmod.info'
  24.  
  25. expand 'version':project.version, 'mcversion':project.minecraft.version
  26. }
  27.  
  28. from(sourceSets.main.resources.srcDirs) {
  29. exclude 'mcmod.info'
  30. }
  31. }
  32.  
  33. jar {
  34. manifest {
  35. attributes 'FMLAT': 'wilsonsmp_at.cfg'
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement