Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkGraph (0.22 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                    implementation "org.different:buildB:1.0"
                    implementation "org.test:buildC:1.0"
                }
            """
    
            when:
            checkDependencies()
    
            then:
            checkGraph {
                module("org.different:buildB:1.0")
                module("org.test:buildC:1.0")
            }
        }
    
        def "substitutes external dependency with root project dependency"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

            dependency buildC, "org.test:buildB:1.0"
    
            when:
            resolve.withoutBuildingArtifacts()
            resolveSucceeds(":checkDeps")
    
            then:
            checkGraph {
                edge("org.test:buildB:1.0", ":buildB", "org.test:buildB:1.0") {
                    configuration = "runtimeElements"
                    compositeSubstitute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
                task resolve {
                    def files = configurations.conf
                    doLast {
                        files.files
                    }
                }
                task checkGraph {
                    def result = configurations.conf.incoming.resolutionResult.rootComponent
                    doLast {
                        def root = result.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top