Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for excludeTasks (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

            /*
                Note: we currently extract this information from the execution plan because it's
                buried under functions in #filter. This could be detangled/simplified by introducing
                excludeTasks(Iterable<Task>) as an analog to addEntryTasks(Iterable<Task>).
    
                This is too drastic a change for the stage in the release cycle were exposing this information
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle dist --exclude-task test
    ----
    ----
    include::{snippetsPath}/tutorial/excludeTasks/tests/excludeTask.out[]
    ----
    
    .Simple Task Graph
    image::commandLineTutorialTasks.png[]
    
    You can see that the `test` task is not executed, even though the `dist` task depends on it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top