All Downloads are FREE. Search and download functionalities are using the official Maven repository.

grails.views.gradle.ViewCompileOptions.groovy Maven / Gradle / Ivy

Go to download

Provides additional view technologies to the Grails framework, including JSON and Markup views.

There is a newer version: 4.0.0-M1
Show newest version
package grails.views.gradle

import org.gradle.api.tasks.Input
import org.gradle.api.tasks.Nested
import org.gradle.api.tasks.compile.GroovyForkOptions

/**
 * @author Graeme Rocher
 * @since 1.0
 */
class ViewCompileOptions implements Serializable {

    private static final long serialVersionUID = 0L;

    @Input
    String encoding = "UTF-8"

    @Nested
    GroovyForkOptions forkOptions = new GroovyForkOptions()

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy