Search Gradle plugins

Version 0.7.0-rc.2

Created 03 March 2022.

Plugin for wooga npm library releases

Using the plugins DSL:

plugins {
  id("net.wooga.node-release") version "0.7.0-rc.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.wooga.node-release" version "0.7.0-rc.2"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects