Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ignoreDeprecations (0.41 sec)

  1. platforms/software/resources-gcs/build.gradle.kts

        integTestImplementation(libs.jetty)
        integTestImplementation(libs.joda)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    strictCompile {
        ignoreDeprecations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    strictCompile {
        ignoreDeprecations() // most of this project has been deprecated
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/build.gradle.kts

        }
        testImplementation(project(":file-collections"))
        testImplementation(project(":platform-jvm"))
        testImplementation(testFixtures(project(":core")))
    }
    
    strictCompile {
        ignoreDeprecations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API (org.gradle.api.tasks.testing.Test)
        ignoreDeprecations() // uses deprecated software model types
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/internal/tasks/testing/**")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/maven/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreDeprecations() // old 'maven' publishing mechanism: types are deprecated
        ignoreRawTypes() // old 'maven' publishing mechanism: raw types used in public API
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/build.gradle.kts

        testFixturesImplementation(libs.gson)
        testFixturesImplementation(project(":base-services"))
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    strictCompile {
        ignoreDeprecations()
    }
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/build.gradle.kts

        }
    }
    
    tasks.withType<JavaCompile>().configureEach {
        options.release = null
        sourceCompatibility = "8"
        targetCompatibility = "8"
    }
    
    strictCompile {
        ignoreDeprecations() // this project currently uses many deprecated part from 'platform-jvm'
    }
    
    packageCycles {
        // These public packages have classes that are tangled with the corresponding internal package.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top