com.github.dtrunk90.webpack
Owner: Danny Trunk
A Gradle plugin for webpack.
https://github.com/dtrunk90/webpack-gradle-plugin
Sources: https://github.com/dtrunk90/webpack-gradle-plugin
Version 1.0.0 (latest)
1.0.0
Created 14 January 2020.
A Gradle plugin for webpack.
Using the plugins DSL:
plugins {
id("com.github.dtrunk90.webpack") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dtrunk90:webpack-gradle-plugin:1.0.0")
}
}
apply(plugin = "com.github.dtrunk90.webpack")
Using the plugins DSL:
plugins {
id "com.github.dtrunk90.webpack" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dtrunk90:webpack-gradle-plugin:1.0.0"
}
}
apply plugin: "com.github.dtrunk90.webpack"