Search Gradle plugins

Version 3.0.0

Created 11 October 2022.

Plugins to ease use of Node tools (Node, Grunt, Gulp)

Using the plugins DSL:

plugins {
  id("nebula.gulp") 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 = "nebula.gulp")

Using the plugins DSL:

plugins {
  id "nebula.gulp" 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: "nebula.gulp"

Learn how to apply plugins to subprojects