Package de.janthomae.leiningenplugin.project

Examples of de.janthomae.leiningenplugin.project.LeiningenProject


        Project project = anActionEvent.getData(PlatformDataKeys.PROJECT);
        List<String> goals = anActionEvent.getData(LeiningenDataKeys.LEININGEN_GOALS);
        if (goals == null || goals.isEmpty()) {
            return;
        }
        LeiningenProject leiningenProject = anActionEvent.getData(LeiningenDataKeys.LEININGEN_PROJECT);
        if (leiningenProject == null) {
            return;
        }

        LeiningenRunnerParameters params = new LeiningenRunnerParameters(goals, leiningenProject.getWorkingDir());
        LeiningenRunConfigurationType.runConfiguration(project, params, anActionEvent.getDataContext());
    }
View Full Code Here

TOP

Related Classes of de.janthomae.leiningenplugin.project.LeiningenProject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.