Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getDependencySubstitution (0.52 sec)

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

         */
        boolean resolveGraphToDetermineTaskDependencies();
    
        SortOrder getSortOrder();
    
        @Override
        DependencySubstitutionsInternal getDependencySubstitution();
    
        /**
         * @return the version selection rules object
         */
        @Override
        ComponentSelectionRulesInternal getComponentSelection();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

        /**
         * Informs whether the component was selected by the dependency substitution rule. Users can configure dependency substitution rules via {@link
         * org.gradle.api.artifacts.ResolutionStrategy#getDependencySubstitution()}
         *
         * @since 1.4
         */
        boolean isSelectedByRule();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

            action.execute(componentSelectionRules);
            return this;
        }
    
        @Override
        public DependencySubstitutionsInternal getDependencySubstitution() {
            return dependencySubstitutions;
        }
    
        @Override
        public ResolutionStrategy dependencySubstitution(Action<? super DependencySubstitutions> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

        /**
         * Returns the set of dependency substitution rules that are set for this configuration.
         *
         * @since 2.5
         */
        DependencySubstitutions getDependencySubstitution();
    
        /**
         * Configures the set of dependency substitution rules for this configuration.  The action receives an instance of {@link DependencySubstitutions} which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.ResolutionStrategy.getComponentSelection()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ResolutionStrategy.java:0)
    Method <org.gradle.api.artifacts.ResolutionStrategy.getDependencySubstitution()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ResolutionStrategy.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top