Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,531 for expectGet (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomRelocationIntegrationTest.groovy

            and:
            createBuildFileWithDependency('groupA', 'artifactA')
    
            and:
            original.pom.expectGet()
            newModule.pom.expectGet()
            newModule.artifact.expectGet()
            apiDep.pom.expectGet()
            apiDep.artifact.expectGet()
            implDep.pom.expectGet()
            implDep.artifact.expectGet()
    
            when:
            run "retrieve"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExclusiveRepositoryContentFilteringIntegrationTest.groovy

                dependencies {
                    conf "org:foo:1.0"
                    conf "other:bar:2.0"
                }
            """
    
            when:
            foo.ivy.expectGet()
            foo.artifact.expectGet()
            bar.pom.expectGet()
            bar.artifact.expectGet()
    
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:foo:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenGradleMetadataRedirectionIntegrationTest.groovy

                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
            mainModule.pom.expectGet()
            mainModule.moduleMetadata.expectGet()
            mainModule.artifact.expectGet()
            dep.pom.expectGet()
            dep.artifact.expectGet()
    
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomPackagingResolveIntegrationTest.groovy

            projectARepo1.artifact(type: 'zip')
            projectARepo1.publish()
    
            and:
            mavenProject.pom.expectGet()
            mavenProject.artifact.expectHeadMissing()
    
            projectARepo1.pom.expectGet()
            projectARepo1.artifact(type: 'zip').expectGet()
    
            then:
            succeeds 'retrieve'
    
            and:
            file('libs').assertHasDescendants('projectA-1.0.zip')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyGradleMetadataRedirectionIntegrationTest.groovy

                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
            mainModule.ivy.expectGet()
            mainModule.moduleMetadata.expectGet()
            mainModule.artifact.expectGet()
            dep.ivy.expectGet()
            dep.artifact.expectGet()
    
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/AbstractHttpCrossVersionSpec.groovy

            def expectResolved() {
                projectB.pom.expectGet()
                projectB.artifact.expectGet()
    
                projectC.rootMetaData.expectGet()
                projectC.pom.expectGet()
                projectC.artifact.expectGet()
    
                projectD.metaData.expectGet()
                projectD.pom.expectGet()
                projectD.artifact.expectGet()
            }
    
            def expectResolveFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/SnapshotVersionsReadOnlyCacheDependencyResolutionTest.groovy

            latest.pom.expectHead()
            latest.pom.sha1.expectGet()
            latest.pom.expectGet()
            latest.moduleMetadata.expectHead()
            latest.moduleMetadata.sha1.expectGet()
            latest.moduleMetadata.expectGet()
            latest.artifact.expectHead()
            latest.artifact.sha1.expectGet()
            latest.artifact.expectGet()
    
            succeeds ':checkDeps', '--refresh-dependencies'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/NonUniqueSnapshotVersionsReadOnlyCacheDependencyResolutionTest.groovy

            latest.pom.expectHead()
            latest.pom.sha1.expectGet()
            latest.pom.expectGet()
            latest.moduleMetadata.expectHead()
            latest.moduleMetadata.sha1.expectGet()
            latest.moduleMetadata.expectGet()
            latest.artifact.expectHead()
            latest.artifact.sha1.expectGet()
            latest.artifact.expectGet()
    
            succeeds ':checkDeps', '--refresh-dependencies'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingResolveIntegrationTest.groovy

                    from configurations.remote
                }
            """
    
            when:
            consumer.pom.expectGet()
            consumer.artifact.expectGet()
            customPackaging.pom.expectGet()
            customPackaging.artifact.expectHead()
            customPackaging.artifact.expectGet()
    
            run("remote")
    
            then:
            file("remote").assertHasDescendants("consumer-1.0.jar", "remote-1.0.aar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

    configurations { compile }
    dependencies { compile 'groupA:projectA:1.2' }
    """
            resolve.prepare()
    
            and:
            original.pom.expectGet()
            newModule.pom.expectGet()
            newModule.artifact.expectGet()
    
            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("groupA:projectA:1.2") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top