Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for withBranch (0.74 sec)

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

                                withBranch('test')
                                withStatus('milestone')
                            }
                        }
                        '1.2'()
                        '2.0' {
                            withModule(org.gradle.test.fixtures.ivy.IvyModule) {
                                withBranch('test')
                                withStatus('milestone')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

                    withModule {
                        withExtraInfo((IvySpecificComponentMetadataRulesIntegrationTest.ns('foo')): "fooValue", (IvySpecificComponentMetadataRulesIntegrationTest.ns('bar')): "barValue")
                        withBranch('someBranch')
                        withStatus('release')
                    }
                }
            }
    
            buildFile <<
                """
    class IvyRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

            return this
        }
    
        IvyHttpModule withExtraInfo(Map extraInfo) {
            backingModule.withExtraInfo(extraInfo)
            return this
        }
    
        IvyHttpModule withBranch(String branch) {
            backingModule.withBranch(branch)
            return this
        }
    
        IvyModuleHttpArtifact getArtifact(Map<String, ?> options = [:]) {
            def artifact = backingModule.moduleArtifact(options)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/DelegatingIvyModule.java

        }
    
        @Override
        public IvyModule withExtraChecksums() {
            backingModule.withExtraChecksums();
            return t();
        }
    
        @Override
        public IvyModule withBranch(String branch) {
            backingModule.withBranch(branch);
            return t();
        }
    
        @Override
        public T dependsOn(String organisation, String module, String revision) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

        /**
         * Don't publish any ivy.xml for this module, but publish .module
         */
        IvyModule withNoIvyMetaData();
    
        IvyModule withStatus(String status);
    
        IvyModule withBranch(String branch);
    
        IvyModule dependsOn(String organisation, String module, String revision);
    
        IvyModule extendsFrom(Map<String, ?> attributes);
    
        IvyModule withoutGradleMetadataRedirection();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

        }
    
        def "can use component selection rule to choose component from different repository for #selector"() {
            def ivyRepo2 = ivyRepo("repo2")
            def module2 = ivyRepo2.module("org.utils", "api", "1.1").withBranch("other").publishWithChangedContent()
    
            buildFile << """
                repositories {
                    ivy { url "${ivyRepo2.uri}" }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

            then:
            succeeds 'checkDeps'
    
            when:
            resetExpectations()
            repository {
                'org.utils:api:1.1' {
                    withModule {
                        withBranch('master')
                        withStatus('release')
                        publishWithChangedContent()
                    }
                }
            }
    
            then:
            repositoryInteractions {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            configurations[config].transitive = false
            return this
        }
    
        IvyFileModule withStatus(String status) {
            this.status = status
            return this
        }
    
        IvyFileModule withBranch(String branch) {
            this.branch = branch
            return this
        }
    
        IvyFileModule withNoMetaData() {
            metadataPublish = MetadataPublish.NONE
            return this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top