Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for shouldResolveConsistentlyWith (0.5 sec)

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

                'org:foo:1.0'()
                'org:foo:1.1'()
            }
            buildFile << """
                configurations {
                    other.shouldResolveConsistentlyWith(another)
                    another.shouldResolveConsistentlyWith(conf)
                    conf.shouldResolveConsistentlyWith(other)
                }
    
                dependencies {
                    conf 'org:foo:1.0'
                    other 'org:foo:1.1'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

            'shouldResolveConsistentlyWith(Configuration)' | 'consumable'      | 'shouldResolveConsistentlyWith(null)'                          || [ProperMethodUsage.RESOLVABLE]
            'shouldResolveConsistentlyWith(Configuration)' | 'dependencyScope' | 'shouldResolveConsistentlyWith(null)'                          || [ProperMethodUsage.RESOLVABLE]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

                    Configuration testCompileClasspath = findConfiguration(testSourceSet.getCompileClasspathConfigurationName());
    
                    testCompileClasspath.shouldResolveConsistentlyWith(mainCompileClasspath);
                }
            }
    
            @Override
            public void useRuntimeClasspathVersions() {
                sourceSets.configureEach(this::applyRuntimeClasspathConsistency);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * @param versionsSource another resolvable configuration to use as reference for versions
         * @return this configuration
         *
         * @since 6.8
         */
        @Incubating
        Configuration shouldResolveConsistentlyWith(Configuration versionsSource);
    
        /**
         * Disables consistent resolution for this configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top