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 343B

123456789101112
  1. task resolveDependencies {
  2. doLast {
  3. allprojects.each { subProject ->
  4. subProject.buildscript.configurations.each { configuration ->
  5. configuration.resolve()
  6. }
  7. subProject.configurations.each { configuration ->
  8. configuration.resolve()
  9. }
  10. }
  11. }
  12. }