grails.views.gradle.markup.MarkupViewCompilerTask.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
Provides additional view technologies to the Grails framework, including JSON and Markup views.
package grails.views.gradle.markup
import grails.views.gradle.AbstractGroovyTemplateCompileTask
import groovy.transform.CompileStatic
import org.gradle.api.tasks.Input
/**
* MarkupView compiler task for Gradle
*
* @author Graeme Rocher
* @since 1.0
*/
@CompileStatic
class MarkupViewCompilerTask extends AbstractGroovyTemplateCompileTask {
@Input
@Override
String getFileExtension() {
"gml"
}
@Input
@Override
String getScriptBaseName() {
"grails.plugin.markup.view.MarkupViewTemplate"
}
@Input
@Override
protected String getCompilerName() {
"grails.plugin.markup.view.MarkupViewCompiler"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy