Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for allDependencyConstraints (0.39 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            'all'                                | 'allDependencyConstraints' | []               | "configurations.maybeCreate('foo').allDependencyConstraints" | createDependencyConstraintSnippet() | addingPluginBuildOpQuery
            'matching{true}.all'                 | 'allDependencyConstraints' | []               | "configurations.maybeCreate('foo').allDependencyConstraints" | createDependencyConstraintSnippet() | addingPluginBuildOpQuery
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                        dependencies: configurations.implementation.allDependencies.withType(ModuleDependency),
                        dependencyConstraints: configurations.implementation.allDependencyConstraints,
                        attributes: testAttributes))
    
                dependencies {
                    constraints {
                        implementation("org:foo:1.0")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/test/java/org/gradle/api/plugins/JavaPlatformPluginTest.groovy

            runtimeVariant.dependencyConstraints.size() == 2
            runtimeVariant.dependencyConstraints == project.configurations.getByName(JavaPlatformPlugin.RUNTIME_CONFIGURATION_NAME).allDependencyConstraints
            runtimeVariant.attributes.keySet() == [Usage.USAGE_ATTRIBUTE, Category.CATEGORY_ATTRIBUTE] as Set
            runtimeVariant.attributes.getAttribute(Usage.USAGE_ATTRIBUTE).name == Usage.JAVA_RUNTIME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    
    /**
     * See [Configuration.getAllDependencyConstraints].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().allDependencyConstraints"), level = DeprecationLevel.HIDDEN)
    val <T : Configuration> NamedDomainObjectProvider<T>.allDependencyConstraints
        get() = get().allDependencyConstraints
    
    
    /**
     * See [Configuration.getArtifacts].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/DependenciesAwareVersionCatalogBuilder.java

                DependencyConstraintSet allDependencyConstraints = dependenciesConfiguration.getAllDependencyConstraints();
                Set<ModuleIdentifier> seen = new HashSet<>();
                collectDependencies(allDependencies, seen);
                collectConstraints(allDependencyConstraints, seen);
            }
            shouldAmendModel = false;
            return super.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/test/groovy/org/gradle/api/plugins/JavaLibraryPluginTest.groovy

            runtimeVariant.dependencyConstraints.size() == 2
            runtimeVariant.dependencyConstraints == project.configurations.getByName(JvmConstants.RUNTIME_CLASSPATH_CONFIGURATION_NAME).allDependencyConstraints
    
            apiVariant.artifacts.collect {it.file} == [jarTask.archiveFile.get().asFile]
            apiVariant.dependencies.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 20:08:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                        dependencies: configurations.implementation.allDependencies.withType(ModuleDependency),
                        dependencyConstraints: configurations.implementation.allDependencyConstraints,
                        attributes: testAttributes))
    
                dependencies {
                    constraints {
                        implementation("org:foo:1.0")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        @Override
        public DependencyConstraintSet getAllDependencyConstraints() {
            if (allDependencyConstraints == null) {
                initAllDependencyConstraints();
            }
            return allDependencyConstraints;
        }
    
        private synchronized void initAllDependencyConstraints() {
            if (allDependencyConstraints != null) {
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                        dependencies: configurations.implementation.allDependencies.withType(ModuleDependency),
                        dependencyConstraints: configurations.implementation.allDependencyConstraints,
                        attributes: testAttributes
                    )
                )
    
                dependencies {
                    implementation("org:foo:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top