Package net.sf.jsptest.compiler.java

Examples of net.sf.jsptest.compiler.java.CommandLineJavac


        // this doesn't work because with Maven we need to set the classpath
        // explicitly as the "current" classpath does not include our
        // dependencies
        compilers.add(new Java6Compiler());
        compilers.add(new SunJavaC());
        compilers.add(new CommandLineJavac());
        for (Iterator i = compilers.iterator(); i.hasNext();) {
            JavaCompiler compiler = (JavaCompiler) i.next();
            if (compiler.isAvailable()) {
                log.debug("Using JavaCompiler: " + compiler.getClass().getName());
                return compiler;
View Full Code Here

TOP

Related Classes of net.sf.jsptest.compiler.java.CommandLineJavac

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.