Package org.gradle.api.tasks.compile

Examples of org.gradle.api.tasks.compile.BaseForkOptions


     * fork options for the twirl compiler.
     * Forked compilation must be enabled by setting fork = true first
     */
    public BaseForkOptions getForkOptions() {
        if (forkOptions == null) {
            forkOptions = new BaseForkOptions();
        }
        return forkOptions;
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.tasks.compile.BaseForkOptions

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.