Package org.gradle.play.internal.routes

Examples of org.gradle.play.internal.routes.DaemonRoutesCompiler


        if (compiler == null) {
            ProjectInternal projectInternal = (ProjectInternal) getProject();
            InProcessCompilerDaemonFactory inProcessCompilerDaemonFactory = getServices().get(InProcessCompilerDaemonFactory.class);

            RoutesCompiler playRoutesCompiler = new RoutesCompiler(getRoutesCompilerVersion());
            compiler = new DaemonRoutesCompiler(projectInternal.getProjectDir(), playRoutesCompiler, inProcessCompilerDaemonFactory, getCompilerClasspath().getFiles());

        }
        return compiler;
    }
View Full Code Here

TOP

Related Classes of org.gradle.play.internal.routes.DaemonRoutesCompiler

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.