Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 588 for ivyB (0.09 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

            when:
            thirdPartyModuleInEmptyRepo.ivy.expectDownloadMissing()
            thirdPartyModuleInEmptyRepo.jar.expectDownloadMissing()
            thirdPartyModule.ivy.expectDownload()
            thirdPartyModule.jar.expectDownload()
    
            companyModuleInEmptyRepo.ivy.expectDownloadMissing()
            companyModuleInEmptyRepo.jar.expectDownloadMissing()
            companyModuleInThirdPartyRepo.ivy.expectDownloadMissing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

            when:
            module.ivy.expectGet()
            parent.ivy.expectGet()
    
            then:
            fails "checkDeps"
            failedResolve.assertFailurePresent(failure)
            failure
                .assertResolutionFailure(":compile")
                .assertHasCause("Could not parse Ivy file ${module.ivy.uri}")
                .assertHasCause("Could not parse Ivy file ${parent.ivy.uri}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. test-site/activator-launch-1.3.2.jar

    static IvyContext popContext(); public final org.apache.ivy.Ivy getIvy(); public final org.apache.ivy.Ivy peekIvy(); private org.apache.ivy.Ivy getDefaultIvy(); public final void setIvy(org.apache.ivy.Ivy); public final settings.IvySettings getSettings(); public final org.apache.ivy.plugins.circular.CircularDependencySt getCircularDependenc(); public final Object get(String); public final void set(String, Object); public final org.apache.ivy.util.MessageLogger getMessageLogger(); public final event.EventManager...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

                    .expectSourceArtifact("my-sources")
                    .createVerifyTask("verifyRefresh")
    
            and:
            server.resetExpectations()
            module.ivy.expectHead()
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
            sourceArtifact.expectGet()
    
            then:
            executer.withArgument(execArg)
            succeeds("verifyRefresh")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            def file = temporaryFolder.file("ivy.xml") << """
    <ivy-module version="1.0">
        <not-an-ivy-file/>
    </ivy-module>
    """
    
            when:
            parse(parseContext, file)
    
            then:
            def e = thrown(MetaDataParseException)
            e.message == "Could not parse Ivy file ${file}"
            e.cause.message.contains('Not a valid Ivy file')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

            failure.assertHasCause("Failed to publish publication 'ivy' to repository 'ivy'")
            failure.assertHasCause("Invalid publication 'ivy': supplied revision does not match ivy descriptor (cannot edit revision directly in the ivy descriptor file).")
        }
    
        def "produces sensible error with invalid extra info elements" () {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

            failure.assertHasCause "Failed to publish publication 'ivy' to repository 'ivy'"
            failure.assertHasCause "Invalid publication 'ivy': organisation cannot be empty."
        }
    
        def "fails with reasonable error message for invalid metadata value" () {
            when:
            buildFile << """
                apply plugin: 'ivy-publish'
    
                group = 'org'
                version = '2'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            module.jar.sha256.expectPut()
            module.jar.sha512.expectPut()
    
            module.ivy.expectPutBroken()
            module.ivy.expectPut(HttpStatus.CREATED_201)
            module.ivy.sha1.expectPut(HttpStatus.CREATED_201)
            module.ivy.sha256.expectPut(HttpStatus.CREATED_201)
            module.ivy.sha512.expectPut(HttpStatus.CREATED_201)
    
            module.moduleMetadata.expectPutBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    // end::flat-dir[]
    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
            url "http://repo.mycompany.com/repo"
        }
    }
    // end::ivy-repo[]
    
    // tag::local-ivy-repo[]
    repositories {
        ivy {
            // URL can refer to a local directory
            url "../local-repo"
        }
    }
    // end::local-ivy-repo[]
    
    // tag::ivy-repo-with-maven-layout[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top