Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for ivyB (0.04 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            def repo3Name = "ivy"
            repo3.getName() >> { repo3Name }
            repo3.setName(_) >> { repo3Name = it[0] }
    
            repositoryFactory.createIvyRepository() >>> [repo1, repo2, repo3]
    
            when:
            handler.ivy {}
            handler.ivy {}
            handler.ivy {}
    
            then:
            repo1Name == "ivy"
            repo2Name == "ivy2"
            repo3Name == "ivy3"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            def repo2ProjectA2 = repo2.module("group", "projectA", "1.2").publish()
            repo1ProjectA1.ivy.expectGet()
            repo2ProjectA1.ivy.expectHead()
            repo2ProjectA1.ivy.sha1.expectGet()
            repo2ProjectA1.ivy.expectGet()
            repo2ProjectA1.jar.expectGet()
            succeeds "cache"
    
            when:
            repo1.directoryList("group", "projectA").expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/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)
  8. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

                println "* GET IVY FILE"
                def ivy = resources.ivy
                provideHeadersForResource(response, ivy)
                ivy.writeContentTo(response.outputStream)
            }
    
            private void handleHeadIvy(HttpServletResponse response) {
                println "* HEAD IVY FILE"
                provideHeadersForResource(response, resources.ivy)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

            fails 'publish'
    
            then:
            failure.assertHasCause("Ivy publication 'ivy' cannot include multiple components")
        }
    
        def "publishes to all defined repositories"() {
            given:
            def ivyRepo2 = ivy("ivy-repo-2")
    
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: 'ivy-publish'
    
                group = 'org.gradle.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            file("build", "publications", "ivyJava", "ivy.xml.asc").text
        }
    
        def "signs Gradle metadata"() {
            given:
            buildFile << """
                apply plugin: 'ivy-publish'
                apply plugin: 'maven-publish'
                ${keyInfo.addAsPropertiesScript()}
    
                publishing {
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top