Map has a methos to retrieve all the values from it.
You just need to call projectsMap.values().stream().flatMap(List::stream).collect(Collectors.toList())
to make a List os all objects of the map values.
EDIT: forgot to add flatMap, as Holger commented.