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