Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 183 for libs (0.02 seconds)

  1. okcurl/build.gradle.kts

          resources.srcDir(copyResourcesTemplates.get().outputs)
        }
      }
    }
    
    dependencies {
      api(projects.okhttp)
      api(projects.loggingInterceptor)
      api(libs.squareup.okio)
      implementation(libs.clikt)
    
      testApi(libs.assertk)
      testImplementation(kotlin("test"))
    }
    
    configure<AnimalSnifferExtension> {
      isIgnoreFailures = true
    }
    
    tasks.jar {
      manifest {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Jul 22 20:31:49 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  2. module-tests/build.gradle.kts

      testImplementation(projects.loggingInterceptor)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
    
      testImplementation(libs.junit.jupiter.api)
      testRuntimeOnly(libs.junit.jupiter.engine)
      testRuntimeOnly(libs.junit.platform.launcher)
    }
    
    application {
      mainClass = "okhttp3.modules.Main"
      mainModule = "okhttp3.modules"
    }
    
    jlinkApplication {
      stripDebug = true
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 06:45:42 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  3. buildSrc/settings.gradle.kts

    rootProject.name = "okhttp-buildSrc"
    
    dependencyResolutionManagement {
      versionCatalogs {
        create("libs") {
          from(files("../gradle/libs.versions.toml"))
        }
      }
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 06:22:22 GMT 2025
    - 174 bytes
    - Click Count (0)
  4. android-test-app/build.gradle.kts

        abortOnError = true
      }
    }
    
    dependencies {
      implementation(libs.playservices.safetynet)
      implementation(projects.okhttp)
      implementation(libs.androidx.activity)
    
      androidTestImplementation(libs.androidx.junit)
      androidTestImplementation(libs.androidx.espresso.core)
      androidTestImplementation(libs.androidx.test.runner)
      androidTestImplementation(libs.assertk)
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Jul 19 12:35:48 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  5. mockwebserver-junit5/build.gradle.kts

      }
    }
    
    dependencies {
      api(projects.okhttp)
      api(projects.mockwebserver3)
      api(libs.junit.jupiter.api)
      compileOnly(libs.animalsniffer.annotations)
    
      testRuntimeOnly(libs.junit.jupiter.engine)
      testImplementation(libs.kotlin.junit5)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.assertk)
    }
    
    mavenPublishing {
      configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 06:22:22 GMT 2025
    - 728 bytes
    - Click Count (0)
  6. okhttp-logging-interceptor/build.gradle.kts

    project.applyJavaModules("okhttp3.logging")
    
    dependencies {
      "friendsApi"(projects.okhttp)
    
      testImplementation(libs.junit)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.okhttpTls)
      testImplementation(libs.assertk)
    }
    
    mavenPublishing {
      configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 06:22:22 GMT 2025
    - 776 bytes
    - Click Count (0)
  7. samples/guide/build.gradle.kts

      implementation(projects.mockwebserver)
      implementation(projects.okhttpTestingSupport)
      implementation(projects.okhttpTls)
      implementation(libs.animalsniffer.annotations)
      implementation(libs.squareup.moshi)
      implementation(libs.squareup.okio.fakefilesystem)
      ksp(libs.squareup.moshi.compiler)
    }
    
    java {
      toolchain {
        languageVersion.set(JavaLanguageVersion.of(17))
      }
    }
    
    tasks.compileJava {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat May 17 05:15:32 GMT 2025
    - 554 bytes
    - Click Count (0)
  8. mockwebserver/build.gradle.kts

      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.okhttpTls)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(libs.junit)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlin.test.junit)
      testImplementation(libs.assertk)
    }
    
    mavenPublishing {
      configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
    }
    
    kotlin {
      explicitApi()
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 06:22:22 GMT 2025
    - 790 bytes
    - Click Count (0)
  9. okhttp-zstd/build.gradle.kts

    )
    
    dependencies {
      "friendsApi"(projects.okhttp)
      implementation(libs.zstd.kmp.okio)
    
      testImplementation(projects.okhttpBrotli)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlin.test.junit)
      testImplementation(libs.assertk)
    }
    
    mavenPublishing {
      configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Thu Jul 31 18:34:32 GMT 2025
    - 766 bytes
    - Click Count (0)
  10. native-image-tests/build.gradle.kts

    //    )
    //  }
    //}
    
    dependencies {
      implementation(projects.okhttp)
    
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(libs.assertk)
      testRuntimeOnly(libs.junit.jupiter.engine)
      testImplementation(libs.kotlin.junit5)
      testImplementation(libs.junit.jupiter.params)
    }
    
    graalvmNative {
      testSupport = true
    
      binaries {
        named("test") {
          buildArgs.add("--strict-image-heap")
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Jul 22 20:31:49 GMT 2025
    - 904 bytes
    - Click Count (0)
Back to Top