You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

resolve-dependencies.gradle 449B

12345678910111213141516
  1. task resolveDependencies {
  2. doLast {
  3. allprojects.each { subProject ->
  4. subProject.buildscript.configurations.each { configuration ->
  5. if (configuration.isCanBeResolved()) {
  6. configuration.resolve()
  7. }
  8. }
  9. subProject.configurations.each { configuration ->
  10. if (configuration.isCanBeResolved()) {
  11. configuration.resolve()
  12. }
  13. }
  14. }
  15. }
  16. }