Search Gradle plugins

Version 1.3.1

Created 23 January 2020.

Nebula Gulp Plugin

Using the plugins DSL:

plugins {
  id("nebula.gulp") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:nebula-node-plugin:1.3.1")
  }
}

apply(plugin = "nebula.gulp")

Using the plugins DSL:

plugins {
  id "nebula.gulp" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:nebula-node-plugin:1.3.1"
  }
}

apply plugin: "nebula.gulp"

Learn how to apply plugins to subprojects