Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for noArtifacts (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                            notRequested()
                            byAncestor()
                            byReason("didn't match versions 18, 17")
                        }
                        noArtifacts()
                    }
                }
            }
    
        }
    
        def "should fail and include path to unresolvable strict version range"() {
            given:
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

                        byConflictResolution("between versions 2.0 and 1.2")
                        module("test:projectB:2.1.5")
                    }
                    project(":subproject", "test:subproject:") {
                        noArtifacts()
                        module("test:projectA:2.0")
                    }
                }
            }
        }
    
        void canHaveCycleInDependencyGraph() {
            given:
            resolve.prepare("compile")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                deps << edge
                return edge
            }
    
            /**
             * Specifies that this node has no artifacts associated with it.
             */
            NodeBuilder noArtifacts() {
                implicitArtifact = false
                return this
            }
    
            /**
             * Specifies an artifact for this node. A default is assumed when none specified
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top