Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dependencyConstraints (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                copiedDependencies.add(dependency.copy());
            }
            DomainObjectSet<DependencyConstraint> copiedDependencyConstraints = copiedConfiguration.getDependencyConstraints();
            for (DependencyConstraint dependencyConstraint : dependencyConstraints) {
                copiedDependencyConstraints.add(((DependencyConstraintInternal) dependencyConstraint).copy());
            }
            return copiedConfiguration;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            def bom = mavenRepo.module("org", "bom", "1.0")
            bom.hasPackaging('pom')
            bom.dependencyConstraint(root11)
            if (dependsOptional) {
                bom.dependencyConstraint(optional)
            }
            bom.publish()
    
            buildFile << """
    apply plugin: 'java'
    
    repositories {
        maven {
            name 'repo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top