in src/main/groovy/com/epam/deltix/gradle/plugins/velocity/VelocityTask.groovy [49:63]
Set<Map> getContexts() {
if (velocityContexts.isEmpty())
return null
Set<Map> contexts = new HashSet<>()
for (VelocityContext velContext : velocityContexts) {
Map contextMap = [:]
for (String key in velContext.keys)
contextMap.put(key, velContext.get(key))
contexts.add(contextMap)
}
return contexts
}