Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 590 for ivy2 (0.14 sec)

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

                        assert IvyContext.context.ivy.is(ivy1)
                    } as Action)
                }
                start {
                    manager.withIvy({ param ->
                        instant.action2
                        thread.blockUntil.action1
                        ivy2 = param
                        ivySettings2 = param.settings
                        assert IvyContext.context.ivy.is(ivy2)
                    } as Action)
                }
    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/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishCoordinatesIntegTest.groovy

                version = '1.0'
    
                publishing {
                    repositories {
                        ivy {
                            name "ivy1"
                            url "${ivyRepo.uri}"
                        }
                        ivy {
                            name "ivy2"
                            url "${ivyRepo.uri}"
                        }
                    }
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/AliasedArtifactResolutionIntegrationTest.groovy

            then:
            succeedsWith 'mavenRepository2'
        }
    
        def "does not re-download ivy artifact downloaded from a different ivy repository when sha1 matches"() {
            when:
            def projectBRepo1 = ivyRepo1.module('org.name', 'projectB', '1.0').publish()
            projectBRepo1.ivy.expectGet()
            projectBRepo1.jar.expectGet()
    
            then:
            succeedsWith 'ivyRepository1'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/output-ivy.xml

    <!-- This file is an example of the Ivy metadata that this build will produce -->
    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
      <!-- This module was also published with a richer model, Gradle metadata,  -->
      <!-- which should be used instead. Do not delete the following line which  -->
      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyMetadataRule/kotlin/repo/org.sample/lib/2.0/ivy-2.0.xml

    <ivy-module version="2.0">
        <info organisation="org.sample" module="lib" revision="2.0"/>
        <configurations>
            <conf name="compile" visibility="public"/>
            <conf name="default" visibility="public" extends="compile,runtime"/>
            <conf name="runtime" visibility="public"/>
        </configurations>
        <publications>
            <artifact name='lib' type='jar' ext='jar' conf='compile' />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyMetadataRule/groovy/repo/org.sample/api/2.0/ivy-2.0.xml

    <ivy-module version="2.0">
        <info organisation="org.sample" module="api" revision="2.0"/>
        <configurations>
            <conf name="compile" visibility="public"/>
            <conf name="default" visibility="public" extends="compile,runtime"/>
            <conf name="runtime" visibility="public"/>
        </configurations>
        <publications>
            <artifact name='api' type='jar' ext='jar' conf='compile' />
        </publications>
        <dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project2/1.0/ivy-1.0.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
      <info organisation="org.example" module="project2" revision="1.0" status="integration" publication="20150519174136">
        <description/>
      </info>
      <configurations>
        <conf name="default" visibility="public" description="Configuration for default artifacts." extends="runtime"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/consuming/common/ivy-repo/com.example.goodbye/com.example.goodbye.gradle.plugin/1.0.0/ivy-1.0.0.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="2.0">
      <info module="com.example.goodbye.gradle.plugin" organisation="com.example.goodbye" publication="20200318132938" revision="1.0.0" status="integration">
        <description/>
      </info>
      <configurations/>
      <publications/>
      <dependencies>
        <dependency name="sample-plugins" org="com.example" rev="1.0.0"/>
      </dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 406 bytes
    - Viewed (0)
Back to top