Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for moduleInsights (0.12 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

     *                               same array as configurations.dependencies.children
     *                           ]
     *                       },
     *                       ...
     *                   ],
     *                   "moduleInsights : [
     *                       {
     *                           "module" : "group:name"
     *                           "insight" : [
     *                               {
     *                                   "name" : "...",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            then:
            json.project.configurations[0].moduleInsights.size() == 2
            json.project.configurations[0].moduleInsights.any { it.module == 'foo:bar' }
            json.project.configurations[0].moduleInsights.any { it.module == 'foo:baz' }
            def barInsight = json.project.configurations[0].moduleInsights.find({ it.module == 'foo:bar' }).insight
            barInsight.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top