Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for checkstyleConfig (0.07 seconds)

  1. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

    tasks.withType<Checkstyle>().configureEach {
      exclude("**/CipherSuite.java")
    }
    
    val checkstyleConfig = configurations.maybeCreate("checkstyleConfig")
    dependencies {
      add("checkstyleConfig", library("checkstyle")) {
        isTransitive = false
      }
    }
    
    configure<CheckstyleExtension> {
      config = resources.text.fromArchiveEntry(checkstyleConfig, "google_checks.xml")
      toolVersion = version("checkstyle")
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

      String checkstyleIdeConfig = "$rootDir/checkstyle_ide.xml"
    
      inputs.files(file(checkstyleConfig), file(checkstyleIdeFragment))
      outputs.files(file(checkstyleIdeConfig))
    
      doLast {
        // Create an IDE-specific checkstyle config by first copying the standard config
        Files.copy(
          Paths.get(file(checkstyleConfig).getPath()),
          Paths.get(file(checkstyleIdeConfig).getPath()),
          StandardCopyOption.REPLACE_EXISTING
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 19:34:12 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  3. okhttp/build.gradle.kts

      "Automatic-Module-Name: okhttp3",
      "Bundle-SymbolicName: com.squareup.okhttp3",
    )
    
    val androidSignature by configurations.getting
    val jvmSignature by configurations.getting
    val checkstyleConfig by configurations.getting
    
    // Animal Sniffer confirms we generally don't use APIs not on Java 8.
    configure<AnimalSnifferExtension> {
      annotation = "okhttp3.internal.SuppressSignatureCheck"
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
Back to Top