Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for PluginDependenciesSpec (0.24 sec)

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

    import org.gradle.api.logging.LoggingManager
    import org.gradle.api.plugins.PluginAware
    import org.gradle.kotlin.dsl.ScriptHandlerScope
    import org.gradle.kotlin.dsl.PluginDependenciesSpecScope
    import org.gradle.plugin.use.PluginDependenciesSpec
    
    
    @ImplicitReceiver(Project::class)
    open class CompiledKotlinBuildScript(
        private val host: KotlinScriptHost<Project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginTreeTest.kt

                        nestedPluginC,
                        // plugins with ids prefixed by other plugin ids
                        // cannot be properly supported due to the side-effecting nature
                        // of `PluginDependenciesSpec#id`
                        PluginTree.PluginSpec("flat-plugin.conflict", "IgnoredPlugin"),
                        PluginTree.PluginSpec("nested.plugin-a.conflict", "IgnoredPlugin")
                    ).shuffled().asSequence()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    Gradle determines the correct `this` object and invokes the correct corresponding method.
    The `this` of the method invocation `id("plugin")` object is of type link:{javadocPath}/org/gradle/plugin/use/PluginDependenciesSpec.html[`PluginDependenciesSpec`].
    
    The settings file is composed of Gradle API calls built on top of the DSLs.
    Gradle executes the script line by line, top to bottom.
    
    Let's take a look at an example and break it down:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependencySpec.java

    import javax.annotation.Nullable;
    
    /**
     * A mutable specification of a dependency on a plugin.
     * <p>
     * Can be used to specify the version of the plugin to use.
     * </p>
     * <p>
     * See {@link PluginDependenciesSpec} for more information about declaring plugin dependencies.
     * </p>
     */
    public interface PluginDependencySpec {
    
        /**
         * Specify the version of the plugin to depend on.
         *
         * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top