Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for byConsistentResolution (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                    module('org:foo:1.0') {
                        byConsistentResolution('compileClasspath')
                        module('org:fooA:1.0') {
                            byConsistentResolution('compileClasspath')
                            byAncestor()
                            notRequested()
                            module("org:transitive:1.0") {
                                byConsistentResolution('compileClasspath')
                                byAncestor()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:foo:1.0') {
                        byConsistentResolution('compileClasspath')
                        module("org:transitive:1.0") {
                            notRequested()
                            byConsistentResolution('compileClasspath')
                            byAncestor()
                        }
                    }
                    module('org:bar:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                }
                this
            }
    
            NodeBuilder byAncestor() {
                byReason(ComponentSelectionCause.BY_ANCESTOR.defaultReason)
            }
    
            NodeBuilder byConsistentResolution(String source) {
                byConstraint("version resolved in configuration ':$source' by consistent resolution")
            }
    
            /**
             * Marks that this node was selected by the given reason
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top