Advertisement
TheCountryGamer

ForgeGradle Trouble

Feb 8th, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.03 KB | None | 0 0
  1. Last login: Sat Feb 8 08:38:15 on ttys000
  2. MyMacBookPro:~ username$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
  3. ==> This script will install:
  4. /usr/local/bin/brew
  5. /usr/local/Library/...
  6. /usr/local/share/man/man1/brew.1
  7. ==> The following directories will be made group writable:
  8. /usr/local/.
  9. /usr/local/bin
  10. /usr/local/share
  11. /usr/local/share/man
  12. /usr/local/share/man/man1
  13. /usr/local/share/man/man3
  14. /usr/local/share/man/man5
  15. /usr/local/share/man/man7
  16. ==> The following directories will have their group set to admin:
  17. /usr/local/.
  18. /usr/local/bin
  19. /usr/local/share
  20. /usr/local/share/man
  21. /usr/local/share/man/man1
  22. /usr/local/share/man/man3
  23. /usr/local/share/man/man5
  24. /usr/local/share/man/man7
  25.  
  26. Press RETURN to continue or any other key to abort
  27. ==> /usr/bin/sudo /bin/chmod g+rwx /usr/local/. /usr/local/bin /usr/local/share /usr/local/share/man /usr/local/share/man/man1 /usr/local/share/man/man3 /usr/local/share/man/man5 /usr/local/share/man/man7
  28.  
  29. WARNING: Improper use of the sudo command could lead to data loss
  30. or the deletion of important system files. Please double-check your
  31. typing when using sudo. Type "man sudo" for more information.
  32.  
  33. To proceed, enter your password, or type Ctrl-C to abort.
  34.  
  35. Password:
  36. ==> /usr/bin/sudo /usr/bin/chgrp admin /usr/local/. /usr/local/bin /usr/local/share /usr/local/share/man /usr/local/share/man/man1 /usr/local/share/man/man3 /usr/local/share/man/man5 /usr/local/share/man/man7
  37. ==> Downloading and installing Homebrew...
  38. remote: Counting objects: 149003, done.
  39. remote: Compressing objects: 100% (43639/43639), done.
  40. remote: Total 149003 (delta 104290), reused 149003 (delta 104290)
  41. Receiving objects: 100% (149003/149003), 29.21 MiB | 1.88 MiB/s, done.
  42. Resolving deltas: 100% (104290/104290), done.
  43. From https://github.com/Homebrew/homebrew
  44. * [new branch] master -> origin/master
  45. HEAD is now at 3419d18 xdu 3.0
  46. ==> Installation successful!
  47. You should run `brew doctor' *before* you install anything.
  48. Now type: brew help
  49. MyMacBookPro:~ username$ brew help
  50. Example usage:
  51. brew [info | home | options ] [FORMULA...]
  52. brew install FORMULA...
  53. brew uninstall FORMULA...
  54. brew search [foo]
  55. brew list [FORMULA...]
  56. brew update
  57. brew upgrade [FORMULA...]
  58. brew pin/unpin [FORMULA...]
  59.  
  60. Troubleshooting:
  61. brew doctor
  62. brew install -vd FORMULA
  63. brew [--env | --config]
  64.  
  65. Brewing:
  66. brew create [URL [--no-fetch]]
  67. brew edit [FORMULA...]
  68. open https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook
  69.  
  70. Further help:
  71. man brew
  72. brew home
  73. MyMacBookPro:~ username$ brew doctor
  74. Warning: Your XQuartz (2.7.4) is outdated
  75. Please install XQuartz 2.7.5:
  76. https://xquartz.macosforge.org
  77.  
  78. Warning: /Library/Frameworks/Mono.framework detected
  79. This can be picked up by CMake's build system and likely cause the build to
  80. fail. You may need to move this file out of the way to compile CMake.
  81.  
  82. Warning: /usr/bin occurs before /usr/local/bin
  83. This means that system-provided programs will be used instead of those
  84. provided by Homebrew. The following tools exist at both paths:
  85.  
  86. git
  87. git-cvsserver
  88. git-receive-pack
  89. git-shell
  90. git-upload-archive
  91. git-upload-pack
  92.  
  93. Consider setting your PATH so that /usr/local/bin
  94. occurs before /usr/bin. Here is a one-liner:
  95. echo export PATH='/usr/local/bin:$PATH' >> ~/.bash_profile
  96. MyMacBookPro:~ username$ brew update
  97. Already up-to-date.
  98. MyMacBookPro:~ username$ brew install gradle
  99. ==> Downloading http://services.gradle.org/distributions/gradle-1.10-bin.zip
  100. ######################################################################## 100.0%
  101. 🍺 /usr/local/Cellar/gradle/1.10: 143 files, 42M, built in 22 seconds
  102. MyMacBookPro:~ username$ cd /Users/username/Programming/Java/Minecraft\ Modding/1.7.2/forge-1.7.2-10.12.0.1024-src
  103. MyMacBookPro:forge-1.7.2-10.12.0.1024-src username$ gradle cleancashe --refresh-dependencies
  104. ****************************
  105. Powered By MCP:
  106. http://mcp.ocean-labs.de/
  107. Searge, ProfMobius, Fesh0r,
  108. R4wk, ZeuX, IngisKahn
  109. MCP Data version : unknown
  110. ****************************
  111.  
  112. FAILURE: Build failed with an exception.
  113.  
  114. * What went wrong:
  115. Task 'cleancashe' not found in root project 'forge-1.7.2-10.12.0.1024-src'. Some candidates are: 'cleanCache'.
  116.  
  117. * Try:
  118. Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
  119.  
  120. BUILD FAILED
  121.  
  122. Total time: 17.944 secs
  123. MyMacBookPro:forge-1.7.2-10.12.0.1024-src username$ gradle cleancache --refresh-dependencies
  124. ****************************
  125. Powered By MCP:
  126. http://mcp.ocean-labs.de/
  127. Searge, ProfMobius, Fesh0r,
  128. R4wk, ZeuX, IngisKahn
  129. MCP Data version : unknown
  130. ****************************
  131. :cleanCache
  132.  
  133. BUILD SUCCESSFUL
  134.  
  135. Total time: 16.555 secs
  136. MyMacBookPro:forge-1.7.2-10.12.0.1024-src username$ gradle setupDecompWorkspace eclipse
  137. To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: http://gradle.org/docs/1.10/userguide/gradle_daemon.html.
  138. ****************************
  139. Powered By MCP:
  140. http://mcp.ocean-labs.de/
  141. Searge, ProfMobius, Fesh0r,
  142. R4wk, ZeuX, IngisKahn
  143. MCP Data version : unknown
  144. ****************************
  145. :extractUserDev
  146. :getAssetsIndex
  147. :getAssets
  148. Current status: 3/1120 0%
  149. Current status: 48/1120 4%
  150. Current status: 78/1120 6%
  151. Current status: 90/1120 8%
  152. Current status: 101/1120 9%
  153. Current status: 201/1120 17%
  154. Current status: 329/1120 29%
  155. Current status: 460/1120 41%
  156. Current status: 548/1120 48%
  157. Current status: 998/1120 89%
  158. Current status: 1003/1120 89%
  159. Current status: 1010/1120 90%
  160. Current status: 1070/1120 95%
  161. :copyAssets
  162. :extractNatives
  163. :genSrgs
  164. :downloadMcpTools
  165. :downloadClient
  166. :downloadServer
  167. :mergeJars
  168. Adding cpw/mods/fml/relauncher/SideOnly.class
  169. Adding cpw/mods/fml/relauncher/Side.class
  170. :deobfuscateJar
  171. Applying SpecialSource...
  172. Applying Exceptor...
  173. Injecting source info...
  174. :decompile
  175. :doFmlPatches
  176. :addFmlSources
  177. :remapJar
  178. :doForgePatches
  179. :addForgeJavadoc
  180. :extractForgeSrc
  181. :recompForge
  182. warning: [options] bootstrap class path not set in conjunction with -source 1.6
  183. /Users/username/Programming/Java/Minecraft Modding/1.7.2/forge-1.7.2-10.12.0.1024-src/build/tmp/recompSrc/net/minecraft/client/renderer/RenderBlocks.java:5405: error: missing return statement
  184. }
  185. ^
  186. Note: Some input files use or override a deprecated API.
  187. Note: Recompile with -Xlint:deprecation for details.
  188. Note: Some input files use unchecked or unsafe operations.
  189. Note: Recompile with -Xlint:unchecked for details.
  190. 1 error
  191. 1 warning
  192. :recompForge FAILED
  193.  
  194. FAILURE: Build failed with an exception.
  195.  
  196. * What went wrong:
  197. Execution failed for task ':recompForge'.
  198. > Compilation failed; see the compiler error output for details.
  199.  
  200. * Try:
  201. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
  202.  
  203. BUILD FAILED
  204.  
  205. Total time: 3 mins 42.519 secs
  206. MyMacBookPro:forge-1.7.2-10.12.0.1024-src username$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement