com.timgroup.webpack
                  Owner:
                  
                    
                    Steve Haslam
                  
                
Build Javascript sources with Webpack and test with Mocha
https://github.com/tim-group/gradle-webpack-plugin
Sources: https://github.com/tim-group/gradle-webpack-plugin
Version 1.0.44
Created 17 November 2018.
                Build Javascript sources with Webpack and test with Mocha
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.timgroup.webpack") version "1.0.44"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.timgroup.webpack:com.timgroup.webpack.gradle.plugin:1.0.44") }It can then be applied in the precompiled script plugin:plugins { id("com.timgroup.webpack") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.timgroup.webpack:com.timgroup.webpack.gradle.plugin:1.0.44") } } apply(plugin = "com.timgroup.webpack")
- Applying plugins to all subprojects .