搜索 Gradle 插件

版本 1.5.3 (最新版)

1.5.3

创建于 2019年7月29日。

执行 grunt 构建的 Gradle 插件。

使用 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"

学习如何将插件应用到子项目中