com.netflix.nebula.grunt
Owner: Nebula Plugins
Plugins to ease use of Node tools (Node, Grunt, Gulp)
https://github.com/nebula-plugins/nebula-node-plugin
Sources: https://github.com/nebula-plugins/nebula-node-plugin.git
Version 3.0.0
3.0.0
Created 11 October 2022.
Plugins to ease use of Node tools (Node, Grunt, Gulp)
Using the plugins DSL:
plugins {
id("com.netflix.nebula.grunt") version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-node-plugin:3.0.0")
}
}
apply(plugin = "com.netflix.nebula.grunt")
Using the plugins DSL:
plugins {
id "com.netflix.nebula.grunt" version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-node-plugin:3.0.0"
}
}
apply plugin: "com.netflix.nebula.grunt"