Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 112 of 112 for ModuleComponentSelector (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                                }
                            }""", """resolutionStrategy.dependencySubstitution {
                                all {
                                    val r = requested as ModuleComponentSelector
                                    if (r.module == "bar") {
                                        useTarget("\${r.group}:foo:\${r.version}")
                                    }
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                    }
                }
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
                    setDependencySpec { it.requested instanceof ModuleComponentSelector && it.requested.module == 'leaf2' }
                    configuration = configurations.runtimeClasspath
                }
            """
    
            when:
            run "insight"
    
            then:
    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