Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ContactConvention (0.19 sec)

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

            given:
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile """
    class ContactConvention {
        def contacts(String arg) { arg }
    }
    
    convention.plugins.contacts = new ContactConvention()
    
    subprojects {
        ext.contacts = { throw new RuntimeException() }
        assert contacts("a") == "a"
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top