Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for downloadDependencies (0.05 sec)

  1. build.gradle.kts

        ktlint()
      }
    }
    
    allprojects {
      group = "com.squareup.okhttp3"
      version = "5.2.0-SNAPSHOT"
    
      repositories {
        mavenCentral()
        google()
      }
    
      tasks.register("downloadDependencies") {
        description = "Download all dependencies to the Gradle cache"
        doLast {
          for (configuration in configurations) {
            if (configuration.isCanBeResolved) {
              configuration.files
            }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top