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.github.node-gradle.node" version "2.0.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.github.node-gradle:gradle-node-plugin:2.0.0"
}
}
apply plugin: 'com.github.node-gradle.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.github.node-gradle:gradle-node-plugin:2.0.0-SNAPSHOT"
}
}
apply plugin: 'com.github.node-gradle.node'