Search Gradle plugins

Version 1.0.0

Created 04 March 2022.

Plugin for wooga npm library releases

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects