com.moowork.grunt
Owner: Sten Roger Sandvik
Gradle pluign for executing grunt builds.
https://github.com/srs/gradle-node-plugin
Using the plugins DSL:
plugins {
id("com.moowork.grunt") version "0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.moowork.gradle:gradle-grunt-plugin:0.10")
}
}
apply(plugin = "com.moowork.grunt")
Using the plugins DSL:
plugins {
id "com.moowork.grunt" version "0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.moowork.gradle:gradle-grunt-plugin:0.10"
}
}
apply plugin: "com.moowork.grunt"