
com.github.ksoichiro.web.resource.task.WebResourceCompileTask.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-web-resource-plugin Show documentation
Show all versions of gradle-web-resource-plugin Show documentation
Gradle plugin to use CoffeeScript, LESS and Bower libraries without Node.js/npm.
package com.github.ksoichiro.web.resource.task
import org.gradle.api.DefaultTask
/**
* Main task of this plugin.
* This will trigger other tasks such as compiling CoffeeScript, compiling LESS, etc.
*
* @author Soichiro Kashima
*/
class WebResourceCompileTask extends DefaultTask {
static String NAME = "webResourceCompile"
WebResourceCompileTask() {
dependsOn([WebResourceCompileCoffeeScriptTask.NAME, WebResourceCompileLessTask.NAME, WebResourceCopyBowerDependenciesTask.NAME])
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy