Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for projectReports (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle -q api:properties
    ----
    ----
    include::{snippetsPath}/tutorial/projectReports/tests/propertyListReport.out[]
    ----
    
    You can also query a single property with the optional `--property` argument:
    
    ----
    $ gradle -q api:properties --property allprojects
    ----
    ----
    include::{snippetsPath}/tutorial/projectReports/tests/propertyReport.out[]
    ----
    
    [[sec:command_line_completion]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

        def setup() {
            buildFile << """
            plugins {
                id 'project-report'
            }
            """
        }
    
        def "produces report files"() {
            when:
            succeeds("projectReport")
    
            then:
            file("build/reports/project/dependencies.txt").assertExists()
            file("build/reports/project/properties.txt").assertExists()
            file("build/reports/project/tasks.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

            "taskReport"            | []
            "propertyReport"        | []
            "htmlDependencyReport"  | []
            // projectReport depends on the other ones, and task order may not be preserved,
            // causing equality comparison between first and second outputs to fail
            //"projectReport"         | []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top