Advertisement
DuneSciFye

Untitled

Dec 15th, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. S C:\Github\WildChests> ./gradlew shadowJar
  2.  
  3. > Task :compileJava
  4. Note: Some input files use or override a deprecated API.
  5. Note: Recompile with -Xlint:deprecation for details.
  6. Note: Some input files use unchecked or unsafe operations.
  7. Note: Recompile with -Xlint:unchecked for details.
  8.  
  9. > Task :Hooks:TransportPipes:compileJava
  10. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:3: error: cannot access WildChestsPlugin
  11. import com.bgsoftware.wildchests.WildChestsPlugin;
  12. ^
  13. bad class file: C:\Github\WildChests\target\WildChests-2023.3.jar(/com/bgsoftware/wildchests/WildChestsPlugin.class)
  14. class file has wrong version 62.0, should be 60.0
  15. Please remove or make sure it appears in the correct subdirectory of the classpath.
  16. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:4: error: cannot access Chest
  17. import com.bgsoftware.wildchests.api.objects.chests.Chest;
  18. ^
  19. bad class file: C:\Github\WildChests\archive\API.jar(/com/bgsoftware/wildchests/api/objects/chests/Chest.class)
  20. class file has wrong version 62.0, should be 60.0
  21. Please remove or make sure it appears in the correct subdirectory of the classpath.
  22. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:5: error: cannot access StorageChest
  23. import com.bgsoftware.wildchests.api.objects.chests.StorageChest;
  24. ^
  25. bad class file: C:\Github\WildChests\archive\API.jar(/com/bgsoftware/wildchests/api/objects/chests/StorageChest.class)
  26. class file has wrong version 62.0, should be 60.0
  27. Please remove or make sure it appears in the correct subdirectory of the classpath.
  28. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:22: error: cannot find symbol
  29. public static void register(WildChestsPlugin plugin) {
  30. ^
  31. symbol: class WildChestsPlugin
  32. location: class TransportPipesHook
  33. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:27: error: cannot find symbol
  34. private static void placeChest(Chest chest) {
  35. ^
  36. symbol: class Chest
  37. location: class TransportPipesHook
  38. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:39: error: cannot find symbol
  39. private static void breakChest(@Nullable OfflinePlayer offlinePlayer, Chest chest) {
  40. ^
  41. symbol: class Chest
  42. location: class TransportPipesHook
  43. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:52: error: cannot find symbol
  44. private final Chest chest;
  45. ^
  46. symbol: class Chest
  47. location: class WildChestTransportPipesContainer
  48. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:54: error: cannot find symbol
  49. WildChestTransportPipesContainer(Chest chest) {
  50. ^
  51. symbol: class Chest
  52. location: class WildChestTransportPipesContainer
  53. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:60: error: cannot find symbol
  54. if (chest instanceof StorageChest) {
  55. ^
  56. symbol: class StorageChest
  57. location: class WildChestTransportPipesContainer
  58. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:62: error: cannot find symbol
  59. ItemStack chestItem = ((StorageChest) chest).getItemStack().clone();
  60. ^
  61. symbol: class StorageChest
  62. location: class WildChestTransportPipesContainer
  63. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:63: error: cannot find symbol
  64. BigInteger chestAmount = ((StorageChest) chest).getAmount();
  65. ^
  66. symbol: class StorageChest
  67. location: class WildChestTransportPipesContainer
  68. C:\Github\WildChests\Hooks\TransportPipes\src\main\java\com\bgsoftware\wildchests\hooks\TransportPipesHook.java:65: error: cannot find symbol
  69. ((StorageChest) chest).setAmount(chestAmount.subtract(bigAmount));
  70. ^
  71. symbol: class StorageChest
  72. location: class WildChestTransportPipesContainer
  73. 12 errors
  74.  
  75. > Task :Hooks:TransportPipes:compileJava FAILED
  76.  
  77. FAILURE: Build failed with an exception.
  78.  
  79. * What went wrong:
  80. Execution failed for task ':Hooks:TransportPipes:compileJava'.
  81. > Compilation failed; see the compiler error output for details.
  82.  
  83. * Try:
  84. > Run with --stacktrace option to get the stack trace.
  85. > Run with --info or --debug option to get more log output.
  86. > Run with --scan to get full insights.
  87.  
  88. * Get more help at https://help.gradle.org
  89.  
  90. BUILD FAILED in 20s
  91. 18 actionable tasks: 12 executed, 6 up-to-date
  92. PS C:\Github\WildChests>
  93.  
  94.  
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement