Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ignoreMissingClasses (0.25 seconds)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        oldArchives.from(baselineJars)
    
        // binary breaking change checking setup
        onlyModified = false
        failOnModification = false // we rely on the custom report to fail or not
        ignoreMissingClasses = true // because of a missing scala.runtime.AbstractFunction0 class
    
        BinaryCompatibilityHelper.setupJApiCmpRichReportRules(
            delegate,
            project,
            apiChangesJsonDirectory,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

        }
    
        public void setJdkJarHellClasspath(FileCollection jdkJarHellClasspath) {
            this.jdkJarHellClasspath = jdkJarHellClasspath;
        }
    
        public void ignoreMissingClasses(String... classesOrPackages) {
            if (classesOrPackages.length == 0) {
                missingClassExcludes = null;
                return;
            }
            if (missingClassExcludes == null) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
Back to Top