com.github.node-gradle.grunt
所有者: Alex Nordlund
执行 grunt 构建的 Gradle 插件。
https://github.com/node-gradle/gradle-node-plugin
使用 plugins DSL
plugins {
id("com.github.node-gradle.grunt") version "1.5.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.node-gradle:gradle-node-plugin:1.5.3")
}
}
apply(plugin = "com.github.node-gradle.grunt")
使用 plugins DSL
plugins {
id "com.github.node-gradle.grunt" version "1.5.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.node-gradle:gradle-node-plugin:1.5.3"
}
}
apply plugin: "com.github.node-gradle.grunt"