Search Gradle plugins

Version 0.1.0

Created 14 September 2018.

Plugin for wooga npm library releases

Using the plugins DSL:

plugins {
  id("net.wooga.node-release") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.wooga.gradle:atlas-node-release:0.1.0")
  }
}

apply(plugin = "net.wooga.node-release")

Using the plugins DSL:

plugins {
  id "net.wooga.node-release" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.wooga.gradle:atlas-node-release:0.1.0"
  }
}

apply plugin: "net.wooga.node-release"

Learn how to apply plugins to subprojects