Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for noArtifacts (0.19 sec)

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

                        noArtifacts()
                    }
                    module("org:platform:1.0") {
                        variant(enforcedVariant, [
                            'org.gradle.category': 'enforced-platform',
                            'org.gradle.status': 'release',
                            'org.gradle.usage': javaUsage])
                        noArtifacts()
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectDependenciesAttributesIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    project(':dep', "test:dep:unspecified") {
                        variant "${color}Variant", [color: color]
                        noArtifacts()
                    }
                }
            }
    
            where:
            color << ['blue', 'red']
        }
    
        def "Fails with reasonable error message when no target variant can be found"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                    project(":lib1", "test:lib1:") {
                        configuration = 'conf'
                        noArtifacts()
                        module('org:module-lib1:1.0')
                    }
                    project(":lib2", "test:lib2:") {
                        configuration = 'conf'
                        noArtifacts()
                        module('org:module-lib2:1.0')
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/VariantMetadataSpec.groovy

        List<DependencyConstraintSpec> dependencyConstraints = []
        List<FileSpec> artifacts = []
        List<CapabilitySpec> capabilities = []
        AvailableAtSpec availableAt
        boolean useDefaultArtifacts = true
        boolean noArtifacts = false
    
        VariantMetadataSpec(String name, Map<String, String> attributes = [:]) {
            this.name = name
            this.attributes = attributes
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

                            constraint('com.acme.foo:core:1.1')
                            constraint('com.acme.foo:lib:1.1')
                            byConflictResolution("between versions 1.1 and 1.0")
                            noArtifacts()
                        }
                        module('com.acme.foo:lib:1.1') {
                            variant "apiElements", [
                                'org.gradle.category':'library',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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