private static Collection calculateMpsClassPath()

in mps-maven-plugin/src/main/java/org/jetbrains/mps/mavenplugin/Mps.java [91:96]


    private static Collection<File> calculateMpsClassPath(File mpsHome) throws MojoFailureException {
        Collection<File> result = new LinkedHashSet<>();
        gatherAllJarsUnder(new File(mpsHome, "lib"), result);
        gatherAllJarsUnder(new File(mpsHome, "plugins/mps-java/lib"), result);
        return result;
    }