I have a Map, where the \"value\" is a List of projects:
Map> projectsMap = ...
I want to extract from the map
projectsMap.values().stream().reduce((v1, v2) -> Stream.concat(v1.stream(), v2.stream()).collect(Collectors.toList()))