Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withBranch (0.28 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. 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)
  3. 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)
  4. 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)
Back to top