void setContexts()

in src/main/groovy/com/epam/deltix/gradle/plugins/velocity/VelocityTask.groovy [38:46]


    void setContexts(Collection<Map> contexts) {
        if (contexts == null || contexts.empty)
            return

        velocityContexts = new HashSet<>()

        for (Map context : contexts)
            velocityContexts.add(new VelocityContext(context))
    }