Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pluginsRuntimeOnly (0.33 sec)

  1. platforms/core-runtime/distributions-basics/build.gradle.kts

        pluginsRuntimeOnly(platform(project(":distributions-core")))
    
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":resources-sftp"))
        pluginsRuntimeOnly(project(":resources-s3"))
        pluginsRuntimeOnly(project(":resources-gcs"))
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":build-cache-http"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:05:59 UTC 2024
    - 945 bytes
    - Viewed (0)
  2. subprojects/distributions-full/build.gradle.kts

        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-publishing")))
        pluginsRuntimeOnly(platform(project(":distributions-jvm")))
        pluginsRuntimeOnly(platform(project(":distributions-native")))
    
        pluginsRuntimeOnly(project(":plugin-development"))
        pluginsRuntimeOnly(project(":build-configuration"))
        pluginsRuntimeOnly(project(":build-init"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/distributions-core/build.gradle.kts

        pluginsRuntimeOnly(project(":plugin-use")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        pluginsRuntimeOnly(project(":dependency-management")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        pluginsRuntimeOnly(project(":workers")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // Configurations to define dependencies
    val coreRuntimeOnly by bucket()
    coreRuntimeOnly.description = "To define dependencies to the Gradle modules that make up the core of the distributions (lib/*.jar)"
    val pluginsRuntimeOnly by bucket()
    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top