Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for expectVersionListing (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

    }
    """
    
            repository {
                'org.utils:api:2.1'()
            }
    
            when:
            repositoryInteractions {
                'org.utils:api' {
                    expectVersionListing()
                    '2.1' {
                        expectGetMetadataMissing()
                    }
                }
            }
    
            then:
            fails ":checkDeps"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

                    }
                    conf 'org:bar:1.0'
                }
    
            """
    
            when:
            repositoryInteractions {
                'org:foo' {
                    expectVersionListing()
                    '1.2' {
                        expectGetMetadata()
                        expectGetArtifact()
                    }
                }
                'org:bar:1.0' {
                    expectGetMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                    }
                    conf 'org.test:module:[1.0,2.0)'
                }
            """
    
            when:
            repositoryInteractions {
                'org.test:module' {
                    expectVersionListing()
                }
                'org.test:module:1.2' {
                    expectGetMetadata()
                }
                'org.test:module:1.1' {
                    expectResolve()
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/MetadataSourcesResolveIntegrationTest.groovy

                    '1.1'()
                    '1.2'()
                }
            }
            repositoryInteractions(HttpRepository.MetadataType.ONLY_ORIGINAL) {
                'org.test:projectA' {
                    expectVersionListing()
    
                    '1.2' {
                        expectResolve()
                    }
                }
            }
    
            then:
            succeeds ":checkDeps"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

            }
    
            repositoryInteractions {
                'org.test:moduleA:1.0' {
                    expectGetMetadata()
                }
                'org.test:moduleB' {
                    expectVersionListing()
                    '1.0' {
                        expectGetMetadataMissing()
                    }
                    '1.1' {
                        expectGetMetadata()
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        println "Success for \${it.id}"
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:test' {
                    expectVersionListing()
                }
                'org:test:1.0' {
                    expectGetMetadata()
                }
            }
            fails 'checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    }
                }
    """
            and:
            "align the 'org' group only"()
    
            when:
    
            repository {
                'org:foo' {
                    expectVersionListing()
                }
            }
            expectAlignment {
                module('start') group('start') alignsTo('1.0')
                module('foo') alignsTo('1.5') 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)
Back to top