We are trying to iterate over a Map, but without any success. We reduced our issue to this minimal example:
Map
def map = [ \'monday\': \
Or much simpler
for (def key in map.keySet()) { println "key = ${key}, value = ${map[key]}" }