Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setTransitive (0.18 sec)

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

        get() = get().isTransitive
    
    
    /**
     * See [Configuration.setTransitive].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().setTransitive(t)"), level = DeprecationLevel.HIDDEN)
    fun <T : Configuration> NamedDomainObjectProvider<T>.setTransitive(t: Boolean): Configuration =
        get().setTransitive(t)
    
    
    /**
     * See [Configuration.getDescription].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    You can tell Gradle to disable transitive dependency management for a dependency by setting link:{javadocPath}/org/gradle/api/artifacts/ModuleDependency.html#setTransitive-boolean-[ModuleDependency.setTransitive(boolean)] to `false`.
    As a result only the main artifact will be resolved for the declared dependency.
    
    .Disabling transitive dependency resolution for a declared dependency
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

            DependencyHandler dependencyHandler = project.getDependencies();
    
            Configuration plugins = project.getConfigurations().resolvableDependencyScopeUnlocked(SCALA_COMPILER_PLUGINS_CONFIGURATION_NAME);
            plugins.setTransitive(false);
            jvmPluginServices.configureAsRuntimeClasspath(plugins);
    
            Configuration zinc = project.getConfigurations().resolvableDependencyScopeUnlocked(ZINC_CONFIGURATION_NAME);
            zinc.setVisible(false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * closure of its dependencies and their dependencies. The default value is true.
         *
         * @param t true if this is a transitive configuration.
         * @return this configuration
         */
        Configuration setTransitive(boolean t);
    
        /**
         * Returns the description for this configuration.
         *
         * @return the description. May be null.
         */
        @Nullable
        String getDescription();
    
        /**
    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