Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DependencyConstraintHandlerScope (0.52 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerScope.kt

     *
     * @see [DependencyConstraintHandler]
     * @since 5.0
     */
    class DependencyConstraintHandlerScope
    private constructor(
        val constraints: DependencyConstraintHandler
    ) : DependencyConstraintHandlerDelegate() {
    
        companion object {
            fun of(constraints: DependencyConstraintHandler) =
                DependencyConstraintHandlerScope(constraints)
        }
    
        override val delegate: DependencyConstraintHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerExtensions.kt

    
    /**
     * Configures the dependency constraints.
     *
     * @since 5.0
     */
    operator fun DependencyConstraintHandler.invoke(configuration: DependencyConstraintHandlerScope.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 953 bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.kotlin.dsl.DependencyConstraintHandlerScope> extends/implements org.gradle.kotlin.dsl.support.delegates.DependencyConstraintHandlerDelegate that is Gradle Internal API in (DependencyConstraintHandlerScope.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerScope.kt

         *
         * @param configureAction the action to use to configure module metadata
         *
         * @since 6.3
         */
        fun constraints(configureAction: DependencyConstraintHandlerScope.() -> Unit) {
            super.constraints { configureAction(DependencyConstraintHandlerScope.of(this)) }
        }
    
        /**
         * Adds a dependency to the given configuration.
         *
         * @param dependencyNotation notation for the dependency to be added.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 25.2K bytes
    - Viewed (0)
Back to top