Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for expectAlignment (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    conf 'org:xml:1.0'
                    conf 'org:json:1.1'
                }
            """
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('1.0') alignsTo('1.1') byVirtualPlatform()
                module('xml') tries('1.0') alignsTo('1.1') byVirtualPlatform()
                module('json') alignsTo('1.1') byVirtualPlatform()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

                    }
                }
            }
        }
    
        public final static Closure<Void> VIRTUAL_PLATFORM = {
            // If the platform is declared as virtual, we won't fetch metadata
        }
    
        void expectAlignment(@DelegatesTo(value = AlignmentSpec, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
            def align = new AlignmentSpec()
            spec.delegate = align
            spec.resolveStrategy = Closure.DELEGATE_FIRST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                    conf.resolutionStrategy.force("org:databind:2.7.9")
                }
            """
    
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('2.9.4') alignsTo('2.7.9') byVirtualPlatform()
                module('databind') alignsTo('2.7.9') byVirtualPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                    }
                    conf("org:kotlin:2.9.4.1")
                }
            """
    
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('2.9.4') alignsTo('2.7.9') byVirtualPlatform()
                module('databind') alignsTo('2.7.9') byVirtualPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top