Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dependencyLocking (3.02 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            configuration.execute(getNormalization());
        }
    
        @Inject
        @Override
        public abstract DependencyLockingHandler getDependencyLocking();
    
        @Override
        public void dependencyLocking(Action<? super DependencyLockingHandler> configuration) {
            configuration.execute(getDependencyLocking());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.initialization.dsl.ScriptHandler.dependencyLocking(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (ScriptHandler.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        void normalization(Action<? super InputNormalizationHandler> configuration);
    
        /**
         * Configures dependency locking
         *
         * @since 4.8
         */
        void dependencyLocking(Action<? super DependencyLockingHandler> configuration);
    
        /**
         * Provides access to configuring dependency locking
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * <<#rel4.8:configure_internal_tasks,Configure existing `wrapper` and `init` tasks>> rather than defining your own
     * Consider migrating to the built-in <<dependency_locking#dependency-locking,dependency locking mechanism>> if you are currently using a plugin or custom solution for this
    
    
    === Potential breaking changes
    
     * Build will now fail if a specified init script is not found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top