Advertisement
TurtyWurty

Gradle Task Error

Jan 28th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. Task :extractClient FAILED
  2. 9 actionable tasks: 3 executed, 6 up-to-date
  3. 
  4. FAILURE: Build failed with an exception.
  5. 
  6. * What went wrong:
  7. Some problems were found with the configuration of task ':extractClient' (type 'ExtractClientTask').
  8. - Gradle detected a problem with the following location: 'E:\Gradle\caches\testGradle'.
  9.  
  10. Reason: Task ':extractClient' uses this output of task ':downloadServerMappings' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
  11.  
  12. Possible solutions:
  13. 1. Declare task ':downloadServerMappings' as an input of ':extractClient'.
  14. 2. Declare an explicit dependency on ':downloadServerMappings' from ':extractClient' using Task#dependsOn.
  15. 3. Declare an explicit dependency on ':downloadServerMappings' from ':extractClient' using Task#mustRunAfter.
  16.  
  17. For more information, please refer to https://docs.gradle.org/8.5/userguide/validation_problems.html#implicit_dependency in the Gradle documentation.
  18. - Gradle detected a problem with the following location: 'E:\Gradle\caches\testGradle'.
  19.  
  20. Reason: Task ':extractClient' uses this output of task ':downloadClientMappings' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
  21.  
  22. Possible solutions:
  23. 1. Declare task ':downloadClientMappings' as an input of ':extractClient'.
  24. 2. Declare an explicit dependency on ':downloadClientMappings' from ':extractClient' using Task#dependsOn.
  25. 3. Declare an explicit dependency on ':downloadClientMappings' from ':extractClient' using Task#mustRunAfter.
  26.  
  27. For more information, please refer to https://docs.gradle.org/8.5/userguide/validation_problems.html#implicit_dependency in the Gradle documentation.
  28. 
  29. * Try:
  30. Run with --stacktrace option to get the stack trace.
  31. Run with --info or --debug option to get more log output.
  32. Run with --scan to get full insights.
  33. Get more help at https://help.gradle.org.
  34. 
  35. BUILD FAILED in 1m 46s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement