Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for buildEnvironment (0.51 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    NOTE: Graph of dependencies <<tutorial_using_tasks.adoc#sec:build_script_external_dependencies, declared in the `buildscript` `classpath` configuration>> can be rendered using <<command_line_interface.adoc#sec:listing_project_dependencies, task `buildEnvironment`>>.
    
    === Output Annotations
    
    The `dependencies` task marks dependency trees with the following annotations:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    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

    ====
    
    The output of the task clearly indicates the classpath of the `classpath` configuration:
    
    ----
    $ gradle buildEnvironment
    include::{snippetsPath}/developingPlugins/externalLibraries/tests/buildEnvironment.out[]
    ----
    
    A Gradle plugin does not run in its own, isolated classloader, so you must consider whether you truly need a library or if a simpler solution suffices.
    
    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/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            settingsScript """
                includeBuild 'ext-lib'
                includeBuild 'build-logic'
            """
            buildScript "plugins { id 'my-plugin' }"
    
            when:
            succeeds 'buildEnvironment'
    
            then: "build logic classpath doesn't contain external dependency"
            outputDoesNotContain('com.acme:ext')
    
            and: "worker action uses external dependency"
            succeeds 'runAction'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_environment]]
    = Configuring the Build Environment
    
    Configuring the build environment is a powerful way to customize the build process.
    There are many mechanisms available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The full list of built-in tasks that should not be replaced is:
    `wrapper`, `init`, `help`, `tasks`, `projects`, `buildEnvironment`, `components`, `dependencies`, `dependencyInsight`, `dependentComponents`, `model`, `properties`.
    
    [[changes_4.7]]
    == Upgrading from 4.6 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    <6> JDKs downloaded by the <<toolchains.adoc#sec:provisioning, toolchain support>>.
    <7> Distributions downloaded by the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    <8> Global <<build_environment.adoc#sec:gradle_configuration_properties,Gradle configuration properties>>.
    
    Consult the <<directory_layout.adoc#dir:gradle_user_home,Gradle Directories reference>> to learn more.
    
    [[project_root]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    You can enable configuration-on-demand using the `--configure-on-demand` flag or adding `org.gradle.configureondemand=true` to the `gradle.properties` file.
    
    To configure on demand with every build run, see <<build_environment.adoc#sec:gradle_configuration_properties,Gradle properties>>.
    
    To configure on demand for a given build, see <<command_line_interface.adoc#sec:command_line_performance,command-line performance-oriented options>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    differ from the Daemon's JVM requirements, the Daemon is not compatible.
    
    NOTE: For more information about build environments, see <<build_environment.adoc#build_environment,the build environment documentation>>.
    
    [[sec:why_the_daemon]]
    == Performance Impact
    
    The Daemon can reduce build times by 15-75% when you build the same project repeatedly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    Instead, it will wait until no additional changes are detected for a certain period of time - the quiet period.
    You can configure the quiet period in milliseconds by the Gradle property `<<build_environment.adoc#sec:gradle_configuration_properties,org.gradle.continuous.quietperiod>>`.
    
    == Terminating Continuous Build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top