Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for noMoreExcludes (0.17 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    noMoreExcludes()
                }
                dependency('commons-dbcp:commons-dbcp:1.4') {
                    exists()
                    notTransitive()
                }
                dependency('commons-beanutils', 'commons-beanutils', '1.8.3') {
                    exists()
                    hasExclude('commons-logging')
                    noMoreExcludes()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    noMoreExcludes()
                    strictly(null)
                    rejects()
                }
                noMoreDependencies()
            }
    
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                dependency('commons-collections:commons-collections:3.2.2') {
                    noMoreExcludes()
                    prefers(null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

                    this
                }
    
                DependencyView noMoreExcludes() {
                    def uncheckedExcludes = find().excludes - checkedExcludes
                    assert uncheckedExcludes.empty
                    this
                }
    
                DependencyView notTransitive() {
                    hasExclude('*', '*')
                    noMoreExcludes()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

            }
    
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                dependency("commons-collections:commons-collections:1.0") {
                    rejects()
                    noMoreExcludes()
                }
                noMoreDependencies()
            }
        }
    
        def "a component's variant can be modified before publishing"() {
            given:
            createBuildScripts """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

                dependency('org.gradle.test:project1:1.0') {
                    exists()
                    hasExclude('*', 'commons-collections')
                    hasExclude('commons-io', '*')
                    noMoreExcludes()
                }
            }
        }
    
        def "publish and resolve java-library with dependency on java-platform (named #platformName)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            }
            with(module.parsedModuleMetadata) {
                variant('api') {
                    dependency('some.group:card:1.2') {
                        hasExclude('api-group', 'api-module')
                        noMoreExcludes()
                    }
                }
            }
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
Back to top