Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 128 of 128 for buildscript (0.2 sec)

  1. platforms/documentation/docs/src/docs/dsl/dsl.xml

                <tr>
                    <td>allprojects</td>
                </tr>
                <tr>
                    <td>artifacts</td>
                </tr>
                <tr>
                    <td>buildscript</td>
                </tr>
                <tr>
                    <td>configurations</td>
                </tr>
                <tr>
                    <td>dependencies</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    Concrete examples of build scripts and output available in <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,Viewing and debugging dependencies>>.
    
    Running the `buildEnvironment` task visualises the buildscript dependencies of the selected project, similarly to how `gradle dependencies` visualizes the dependencies of the software being built:
    
    ----
    $ gradle buildEnvironment
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * plugins specified in the <<plugins.adoc#sec:plugins_block,`plugins {}` block>>;
    * `buildscript` classpath dependencies;
    * dependencies in the root project of the <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc,build source (`buildSrc`)>> that appear on the compile or runtime classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    [NOTE]
    ====
    If you leverage exclusive content filtering in the <<plugins.adoc#sec:custom_plugin_repositories,`pluginManagement` section of the `settings.gradle(.kts)`>>, it becomes illegal to add more repositories through the project `buildscript.repositories`.
    In that case, the build configuration will fail.
    
    Your options are either to declare all repositories in settings or to use non-exclusive content filtering.
    ====
    
    === Maven repository filtering
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            '''
    
            def buildScriptA = file('a/build.gradle')
            groovyFile buildScriptA, '''
                plugins {
                    id("my.plugin-1")
                    id("my.plugin-2")
                    id("my.plugin")
                }
            '''
            configuring(buildScriptA)
    
            def buildScriptB = file('b/build.gradle')
            groovyFile buildScriptB, '''
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. Makefile

    	@echo "Verifying build with race"
    	@(env bash $(PWD)/buildscripts/verify-build.sh)
    
    verify-healing: install-race ## verify healing and replacing disks with minio binary
    	@echo "Verify healing build with race"
    	@(env bash $(PWD)/buildscripts/verify-healing.sh)
    	@(env bash $(PWD)/buildscripts/verify-healing-empty-erasure-set.sh)
    	@(env bash $(PWD)/buildscripts/heal-inconsistent-versions.sh)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

            and:
            rootBuildScript.waitForAllPendingCalls()
            assertHasBuildPhase("0% CONFIGURING")
            rootBuildScript.releaseAll()
    
            and:
            bBuildScript.waitForAllPendingCalls()
            assertHasBuildPhase("40% CONFIGURING")
            bBuildScript.releaseAll()
    
            and:
            bAfterEvaluate.waitForAllPendingCalls()
            assertHasBuildPhase("40% CONFIGURING")
            bAfterEvaluate.releaseAll()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    Afterwards, select `2: Add library projects`.
    Next you can choose the DSL for writing buildscripts -  `1  : Groovy` or `2: Kotlin`.
    For the other questions, press enter to use the default values.
    
    The output will look like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top