com.github.dtrunk90.webpack
所有者: Danny Trunk
一个为 webpack 提供的 Gradle 插件。
https://github.com/dtrunk90/webpack-gradle-plugin
源: https://github.com/dtrunk90/webpack-gradle-plugin
版本 1.0.0 (最新)
1.0.0
创建于 2020 年 1 月 14 日。
一个为 webpack 提供的 Gradle 插件。
使用 plugins DSL
plugins {
id("com.github.dtrunk90.webpack") version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dtrunk90:webpack-gradle-plugin:1.0.0")
}
}
apply(plugin = "com.github.dtrunk90.webpack")
使用 plugins DSL
plugins {
id "com.github.dtrunk90.webpack" version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dtrunk90:webpack-gradle-plugin:1.0.0"
}
}
apply plugin: "com.github.dtrunk90.webpack"