static def loadGlobals()

in netbeans.apache.org/buildSrc/src/main/groovy/Utils.groovy [50:56]


    static def loadGlobals(File globalsFile) {
        if(globalsFile.exists()) {
            def map = loadYaml(globalsFile)
            map = addFlattendProperties(map)
            globals.putAll(map)
        }
    }