grails.views.gradle.ViewCompileOptions.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of views-gradle Show documentation
Show all versions of views-gradle Show documentation
Grace Views : Views Gradle
The newest version!
package grails.views.gradle
import javax.inject.Inject
import org.gradle.api.model.ObjectFactory
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.Nested
import org.gradle.api.tasks.compile.AbstractOptions
import org.gradle.api.tasks.compile.GroovyForkOptions
/**
* @author Graeme Rocher
* @since 1.0
*/
class ViewCompileOptions extends AbstractOptions {
@Input
String encoding = "UTF-8"
@Nested
GroovyForkOptions forkOptions = getObjectFactory().newInstance(GroovyForkOptions.class)
@Inject
protected ObjectFactory getObjectFactory() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy