* @param type The type of paths to extract from the project. Corresponds with the names of the respective keys in a leiningen project file. Examples: "resource-paths", "test-paths", or "source-paths"
* @param leinProjectMap The map to extract values from.
* @return A list of paths to folders of type.
*/
public List<String> getPaths(String type, Map leinProjectMap) {
LazySeq pathStrings = ((LazySeq) leinProjectMap.get(type));
List<String> results = new ArrayList<String>();
if (pathStrings != null) {
for (Object obj : pathStrings) {
String path = (String) obj;
results.add(path);