Advertisement
RareScrap

Gravit setup-master.sh error

Apr 7th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. cd ~/Documents/Public\ Projects/DEL
  2. $ ./setup-master.sh
  3. Phase 0: Checking
  4. .../BellSoft/LibericaJDK-21-Full/bin/java
  5. .../BellSoft/LibericaJDK-21-Full/bin/javac
  6. /mingw64/bin/git
  7. javac 21.0.1
  8. Phase 1: Clone main repository
  9. Cloning into 'src'...
  10. remote: Enumerating objects: 45885, done.
  11. remote: Counting objects: 100% (2267/2267), done.
  12. remote: Compressing objects: 100% (314/314), done.
  13. remote: Total 45885 (delta 2110), reused 1953 (delta 1953), pack-reused 43618
  14. Receiving objects: 100% (45885/45885), 9.34 MiB | 4.00 MiB/s, done.
  15.  
  16. Resolving deltas: 100% (21407/21407), done.
  17. Submodule 'modules' (https://github.com/GravitLauncher/LauncherModules.git) registered for path 'modules'
  18. Cloning into '~/Documents/Public Projects/DEL/src/modules'...
  19. Submodule path 'modules': checked out 'e93620f10963b951c8874dfef17dce91cf8c8da9'
  20. Phase 2: Build
  21. To honour the JVM settings for this build a single-use Daemon process will be forked. For more on this, please refer to https://docs.gradle.org/8.6/userguide/gradle_daemon.html#sec:disabling_the_daemon in the Gradle documentation.
  22. Daemon will be stopped at the end of the build
  23. Configuration on demand is an incubating feature.
  24.  
  25. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
  26.  
  27. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
  28.  
  29. For more on this, please refer to https://docs.gradle.org/8.6/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.
  30.  
  31. BUILD SUCCESSFUL in 15s
  32. 83 actionable tasks: 55 executed, 28 from cache
  33. Phase 3: Clone runtime repository
  34. Cloning into 'srcRuntime'...
  35. remote: Enumerating objects: 10282, done.
  36. remote: Counting objects: 100% (3209/3209), done.
  37. remote: Compressing objects: 100% (736/736), done.
  38. remote: Total 10282 (delta 2056), reused 2893 (delta 1912), pack-reused 7073Receiving objects: 100% (10282/10282), 2.60 Receiving objects: 100% (10282/10282), 4.20 MiB | 2.98 MiB/s, done.
  39.  
  40. Resolving deltas: 100% (4936/4936), done.
  41. To honour the JVM settings for this build a single-use Daemon process will be forked. For more on this, please refer to https://docs.gradle.org/8.6/userguide/gradle_daemon.html#sec:disabling_the_daemon in the Gradle documentation.
  42. Daemon will be stopped at the end of the build
  43. Configuration on demand is an incubating feature.
  44.  
  45. > Configure project :
  46. Project : => no module-info.java found
  47.  
  48. > Task :compileJava
  49. ~/Documents/Public Projects/DEL/srcRuntime/src/main/java/pro/gravit/launcher/gui/utils/SystemTheme.java:3: error: cannot find symbol
  50. import javafx.application.ColorScheme;
  51. ^
  52. symbol: class ColorScheme
  53. location: package javafx.application
  54. ~/Documents/Public Projects/DEL/srcRuntime/src/main/java/pro/gravit/launcher/gui/utils/SystemTheme.java:10: error: cannot find symbol
  55. if (Platform.getPreferences().getColorScheme() == ColorScheme.DARK) {
  56. ^
  57. symbol: method getPreferences()
  58. location: class Platform
  59. ~/Documents/Public Projects/DEL/srcRuntime/src/main/java/pro/gravit/launcher/gui/utils/SystemTheme.java:10: error: cannot find symbol
  60. if (Platform.getPreferences().getColorScheme() == ColorScheme.DARK) {
  61. ^
  62. symbol: variable ColorScheme
  63. location: class SystemTheme
  64. 3 errors
  65.  
  66. > Task :compileJava FAILED
  67.  
  68. FAILURE: Build failed with an exception.
  69.  
  70. * What went wrong:
  71. Execution failed for task ':compileJava'.
  72. > Compilation failed; see the compiler error output for details.
  73.  
  74. * Try:
  75. > Run with --info option to get more log output.
  76. > Run with --scan to get full insights.
  77.  
  78. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
  79.  
  80. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
  81.  
  82. For more on this, please refer to https://docs.gradle.org/8.6/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.
  83.  
  84. BUILD FAILED in 8s
  85. 1 actionable task: 1 executed
  86. Build failed. Stopping
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement