io.github.kelvindev15.npm-gradle-plugin
所有者: Kelvin Olaiya
一个用于管理 npm 项目的 Gradle 插件
https://github.com/kelvindev15/npm-gradle-plugin
来源: https://github.com/kelvindev15/npm-gradle-plugin.git
使用plugins DSL
plugins {
id("io.github.kelvindev15.npm-gradle-plugin") version "3.1.1"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kelvindev15:npm-gradle-plugin:3.1.1")
}
}
apply(plugin = "io.github.kelvindev15.npm-gradle-plugin")
使用plugins DSL
plugins {
id "io.github.kelvindev15.npm-gradle-plugin" version "3.1.1"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kelvindev15:npm-gradle-plugin:3.1.1"
}
}
apply plugin: "io.github.kelvindev15.npm-gradle-plugin"