Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mainApiChangesJsonFile (0.09 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            this.acceptedApiChanges = acceptedApiChanges ? AcceptedApiChanges.fromAcceptedChangesMap(acceptedApiChanges.get()) : [:]
    
            // Tests will not supply these
            this.mainApiChangesJsonFile = params.get("mainApiChangesJsonFile") ? new File(params.get("mainApiChangesJsonFile") as String) : null
            this.projectRootDir = params.get("projectRootDir") ? new File(params.get("projectRootDir") as String) : null
        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

            JapicmpTask japicmpTask,
            Project project,
            Directory acceptedViolationsDir,
            FileCollection sourceRoots,
            String currentVersion,
            File mainApiChangesJsonFile,
            Directory projectRootDir,
            File currentUpgradedPropertiesFile,
            File baselineUpgradedPropertiesFile,
            Action<RichReport> configureReport
        ) {
            japicmpTask.tap {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        baselineUpgradedProperties = baselineUpgradedPropertiesFile
    }
    
    def checkBinaryCompatibility = tasks.register("checkBinaryCompatibility", gradlebuild.binarycompatibility.JapicmpTaskWithKotlin) {
        def mainApiChangesJsonFile = apiChangesJsonDirectory.file("accepted-public-api-changes.json")
    
        def acceptedViolationsFiles = apiChangesJsonDirectory.asFileTree.matching {
            include("**/*.json")
        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top