Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for excludeFromConfig (0.21 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

                    } else {
                        module.dependsOn(it)
                    }
                }
            }
    
            if(excludeFromConfig) {
                excludeFromConfig.each {
                    def moduleParts = it.module.split(':') as List
                    module.excludeFromConfig(moduleParts[0], moduleParts[1], it.conf)
                }
            }
    
            if (constraints) {
                constraints.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

            given:
            repository {
                'org.test:moduleA:1.0' {
                    dependsOn 'org.test:moduleB:1.0'
                    excludeFromConfig 'org.test:moduleD', 'compile'
                }
                'org.test:moduleB:1.0' {
                    dependsOn 'org.test:moduleD:1.0'
                }
                'org.test:moduleC:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            return this
        }
    
        IvyFileModule exclude(Map<String, ?> attributes) {
            configurationExcludes.add(attributes)
            return this
        }
    
        IvyFileModule excludeFromConfig(String group, String module, String configuration) {
            Map<String, ?> allAttrs = [organisation: group, module: module, conf: configuration]
            configurationExcludes.add allAttrs
            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