Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for insight (0.44 sec)

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

              - Cannot find a version of 'org:foo' that satisfies the version constraints:
                   Dependency path ':insight-test:unspecified' --> 'org:foo:1.+'
                   Constraint path ':insight-test:unspecified' --> 'org:foo:1.1'
                   Constraint path ':insight-test:unspecified' --> 'org:foo:{strictly 1.0}' because of the following reason: dependency was locked to version '1.0'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                    conf 'org:top:1.0'
                }
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
                    dependencySpec = { it.requested.module == 'middle' }
                    configuration = configurations.conf
                }
            """
    
            when:
            run "insight"
    
            then:
            output.contains """
    org:middle:1.0 FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    image::dependency-management-dependency-insight-report-build-scan.png[]
    
    === Dependency Insights
    
    Gradle provides the built-in `dependencyInsight` task to render a  _dependency insight report_ from the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    /**
     * Generates an HTML dependency report. This report
     * combines the features of the ASCII dependency report and those of the ASCII
     * dependency insight report. For a given project, it generates a tree of the dependencies
     * of every configuration, and each dependency can be clicked to show the insight of
     * this dependency.
     * <p>
     * This task generates a report for the task's containing project by default. But it can also generate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                throw new InvalidUserDataException("Dependency insight report cannot be generated because the input configuration was not specified. "
                    + "\nIt can be specified from the command line, e.g: '" + getPath() + " --configuration someConf --dependency someDep'");
            }
    
            if (getDependencySpec() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/notes-template.md

    -->
    
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Be sure to check out the [public roadmap](https://blog.gradle.org/roadmap-announcement) for insight into what's planned for future releases.
    
    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes.md

    -->
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Be sure to check out the [public roadmap](https://blog.gradle.org/roadmap-announcement) for insight into what's planned for future releases.
    
    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

      - org:foo between versions 1.1 and 1.0"""
            failure.assertHasResolutions("Run with :dependencyInsight --configuration conf " +
                "--dependency org:foo to get more insight on how to solve the conflict.",
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
                GET_HELP
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    ----------
    buildEnvironment - Displays all buildscript dependencies declared in root project '$projectName'.
    dependencies - Displays all dependencies declared in root project '$projectName'.
    dependencyInsight - Displays the insight into a specific dependency in root project '$projectName'.
    help - Displays a help message.
    javaToolchains - Displays the detected java toolchains.
    outgoingVariants - Displays the outgoing variants of root project '$projectName'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Help tasks
    ----------
    buildEnvironment - Displays all buildscript dependencies declared in project ':app'.
    dependencies - Displays all dependencies declared in project ':app'.
    dependencyInsight - Displays the insight into a specific dependency in project ':app'.
    help - Displays a help message.
    javaToolchains - Displays the detected java toolchains.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top