Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setDependencySpec (0.34 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
                dependencies {
                    conf 'org:top:1.0'
                }
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
                    setDependencySpec { it.requested.module == 'leaf2' }
                    configuration = configurations.conf
                }
            """
    
            when:
            run "insight"
    
            then:
            outputContains """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top