Installing the node-related plugins can be done in multiple ways. The easiest is to use the plugins
-closure
in your build.gradle
file:
plugins {
id "com.moowork.node" version "1.0"
}
If you want to install all of the node-plugins (which is pretty uncommon), then write this:
plugins {
id "com.moowork.node" version "1.0"
id "com.moowork.grunt" version "1.0"
id "com.moowork.gulp" version "1.0"
}
You can also install the plugins by using the traditional Gradle way:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:1.0"
}
}
apply plugin: 'com.moowork.node'
If you want to install snapshot versions of this plugin, you can add the OJO repository to your build:
buildscript {
repositories {
maven {
url "http://oss.jfrog.org"
}
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:2.0-SNAPSHOT"
}
}
apply plugin: 'com.moowork.node'