Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toAcceptedChangesMap (0.25 sec)

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

                }
                acceptedApiChanges.acceptedChanges.putAll(acceptedChanges)
            }
            return acceptedApiChanges
        }
    
        Map<String, String> toAcceptedChangesMap() {
            acceptedChanges.collectEntries { change ->
                [(new Gson().toJson(change.key)): change.value]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

        ) {
            japicmpTask.tap {
                addExcludeFilter(AnonymousClassesFilter)
                addExcludeFilter(KotlinInternalFilter)
    
                def acceptedChangesMap = acceptedViolations.toAcceptedChangesMap()
    
                def mainApiChangesJsonFilePath = mainApiChangesJsonFile.path
                def projectRootDirPath = projectRootDir.asFile.path
    
                richReport.get().tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    def checkBinaryCompatibility = tasks.register("checkBinaryCompatibility", gradlebuild.binarycompatibility.JapicmpTask) {
        def isSnapshot = moduleIdentity.snapshot
        inputs.property('acceptedViolations', acceptedViolations.toAcceptedChangesMap())
        inputs.property("baseline.version", compatibilityBaselineVersion)
        inputs.property("currentVersion", baseVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top