org.ysb33r.nodejs.dev
Owner: Schalk Cronjé
Provides conventions for wrapping Gradle around Node development
https://ysb33rOrg.gitlab.io/nodejs-gradle-plugin
Sources: https://gitlab.com/ysb33rOrg/nodejs-gradle-plugin.git
Version 2.1.0
2.1.0
Created 06 December 2023.
Provides conventions for wrapping Gradle around Node development
Using the plugins DSL:
plugins {
id("org.ysb33r.nodejs.dev") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ysb33r.gradle:nodejs-gradle-plugin:2.1.0")
}
}
apply(plugin = "org.ysb33r.nodejs.dev")
Using the plugins DSL:
plugins {
id "org.ysb33r.nodejs.dev" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ysb33r.gradle:nodejs-gradle-plugin:2.1.0"
}
}
apply plugin: "org.ysb33r.nodejs.dev"