Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for noArtifacts (0.36 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("groupA:projectA:1.2") {
                        noArtifacts()
                        module("newGroupA:projectA:1.2") // relocation is treated as a dependency in the graph
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                            constraint("junit:junit:4.12")
                            constraint("org.hamcrest:hamcrest-core:1.3")
                            noArtifacts()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    project(":other", "test:other:unspecified") {
                        configuration('default')
                        noArtifacts()
                    }
                    module('org:test:1.0')
                }
            }
        }
    
        def "fails to resolve a direct dependency using a dynamic version"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/VariantsDependencySubstitutionRulesIntegrationTest.groovy

                            'org.gradle.category': expectedCategory,
                            'org.gradle.usage': 'java-runtime'
                        ])
                        selectedByRule()
                        noArtifacts()
                    }
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:platform:1.0') {
                        noArtifacts()
                        configuration(platformConfiguration)
                    }
                    edge('org:first:1.0', 'org:first:2.0') {
                        byConflictResolution("between versions 2.0 and 1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        noArtifacts()
                    }
                    module('org.gradle.test:lib.subgroup:1.1') {
                        variant('platform-runtime', [
                            'org.gradle.status': 'release',
                            'org.gradle.usage': 'java-runtime',
                            'org.gradle.category': 'platform'])
                        noArtifacts()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

                        edge('org:foo:2.0', ':foo', 'org:foo:1.0') {}.byAncestor()
                    }
                    project(':foo', 'org:foo:1.0') {
                        configuration = 'default'
                        noArtifacts()
                    }
                }
            }
        }
    
        def "incompatible strict constraint and local project fail to resolve"() {
            given:
    
            createDirs("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                            forced()
                            byConstraint()
                            byConstraint("belongs to platform org:platform:1.0")
                        }
                        noArtifacts()
                    }
                    module("root:root:1.0") {
                        module('org:webapp:1.0') {
                            forced()
                            byConstraint("belongs to platform org:platform:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

                    module('org.test:platform:1.0') {
                        if (plainMaven) {
                            configuration("platform-runtime")
                        }
                        noArtifacts()
                        constraint('org.test:depA:1.0')
                    }
                    module('org.test:depD:1.0') {
                        module('org.test:depC:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                            attribute('org.gradle.category', 'platform')
                            members.each { member ->
                                constraint(member)
                            }
                            noArtifacts = true
                        }
                        // this is used only in BOMs
                        members.each { member ->
                            constraint(member)
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top