Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PluginDependenciesSpec (0.5 sec)

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

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.internal.deprecation.DeprecationLogger
    import org.gradle.plugin.management.internal.autoapply.AutoAppliedDevelocityPlugin
    import org.gradle.plugin.use.PluginDependenciesSpec
    import org.gradle.plugin.use.PluginDependencySpec
    
    
    /**
     * The `gradle-enterprise` plugin.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScopeTest.kt

    import org.gradle.internal.resource.StringTextResource
    import org.gradle.plugin.management.internal.PluginRequestInternal
    import org.gradle.plugin.management.internal.autoapply.AutoAppliedDevelocityPlugin
    import org.gradle.plugin.use.PluginDependenciesSpec
    import org.gradle.plugin.use.internal.PluginRequestCollector
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class PluginDependenciesSpecScopeTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 06:46:04 UTC 2024
    - 3.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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    import org.gradle.kotlin.dsl.support.ScriptHandlerScopeInternal
    import org.gradle.kotlin.dsl.support.invalidPluginsCall
    import org.gradle.kotlin.dsl.support.serviceOf
    
    import org.gradle.plugin.use.PluginDependenciesSpec
    
    import kotlin.reflect.KClass
    import kotlin.reflect.KProperty
    
    
    /**
     * Configures the build script classpath for this project.
     */
    fun Project.buildscript(action: ScriptHandlerScope.() -> Unit): Unit =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    The plugin DSL provides a concise and convenient way to declare plugin dependencies.
    
    [[sec:binary_plugins]]
    The plugins block configures an instance of link:{javadocPath}/org/gradle/plugin/use/PluginDependenciesSpec.html[`PluginDependenciesSpec`]:
    
    [source, build.gradle.kts]
    ----
    plugins {
        application                                     // by name
        java                                            // by name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

    import org.gradle.kotlin.dsl.support.useToRun
    import org.gradle.plugin.management.internal.PluginRequestInternal
    import org.gradle.plugin.management.internal.PluginRequests
    import org.gradle.plugin.use.PluginDependenciesSpec
    import org.gradle.plugin.use.internal.PluginRequestApplicator
    import org.gradle.plugin.use.internal.PluginRequestCollector
    import org.gradle.util.internal.TextUtil.normaliseFileSeparators
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <p>
     * Plugins can be used to modularise and reuse project configuration.
     * Plugins can be applied using the {@link PluginAware#apply(java.util.Map)} method, or by using the {@link org.gradle.plugin.use.PluginDependenciesSpec} plugins script block.
     * </p>
     *
     * <a id="properties"></a> <h3>Dynamic Project Properties</h3>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top