Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for noArtifacts (0.43 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

                root(':child1', 'testproject:child1:') {
                    module('org.test:maven:1.0') {
                        edge('org.test:replaced:1.0', ':child2', 'testproject:child2:') {
                            noArtifacts()
                            selectedByRule()
                            module('org.test:dont-ignore-me:1.0')
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                        byConstraint()
                        byConflictResolution("between versions 1.1 and 1.0")
                        noArtifacts()
                        project(":bar", "org:bar:1.1") {
                            configuration = 'default'
                            noArtifacts()
                            constraint("project :foo", "org:foo:1.1")
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                root(":", ":test:") {
                    module("test:a:1.2") {
                        configuration("release")
                        noArtifacts()
                        edge("test:c:{prefer preview}", "test:c:preview") {
                            configuration("release")
                            noArtifacts()
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/EnforcedPlatformIntegrationTest.groovy

                    edge('com.fasterxml.jackson:jackson-bom:{strictly 2.12.3}', 'com.fasterxml.jackson:jackson-bom:2.12.3') {
                        configuration('enforced-platform-runtime')
                        noArtifacts()
                        constraint('com.fasterxml.jackson.core:jackson-core:2.12.3', ':jackson-core', 'com.fasterxml.jackson.core:jackson-core:2.12.3-local-patch')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

            resolvedGraph {
                edge("org.test:platform:1.0", ":platform", "org.test:platform:2.0") {
                    configuration = "runtimeElements"
                    compositeSubstitute()
                    noArtifacts()
                }
            }
    
        }
    
        def "preserves the requested attributes when performing a composite substitution using mapping"() {
            platformDependency 'org.test:platform:1.0'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        edge("org:platform:2.9.4", "org:platform:2.9.4.1")
                    }
                    module('org:kt:2.9.4.1') {
                        module("org:platform:2.9.4.1") {
                            noArtifacts()
                            constraint("org:core:2.9.4")
                            constraint("org:databind:2.9.4")
                            constraint("org:annotations:2.9.4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

                            'org.gradle.category': 'platform',
                            'org.gradle.status': 'release',
                            'org.gradle.usage': 'java-runtime'
                        ])
                        noArtifacts()
                    }
                }
            }
        }
    
        def "Configuration.copy() should when configuration contains project dependency constraints"() {
            setup:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. 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)
Back to top