Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for moo (0.01 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            file('a/build.gradle') << """
    ext.foo = "Moo!!!"
    """
            file('a/child/build.gradle') << """
    task printExt {
        doLast {
            println "The Foo says " + foo
        }
    }
    """
            when:
            run(":a:child:printExt")
    
            then:
            outputContains("The Foo says Moo!!!")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top